From 321df38ccf2edf3b177d27f467fa3b1abb27509d Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Wed, 25 Jul 2012 13:48:46 -0700 Subject: [PATCH] Deleting unused private member variable from AphrontRequest Summary: I was poking around to see how this class worked and noticed this variable does nothing. Test Plan: Careful inspection and reasoning that unused private member variable can be deleted. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3068 --- src/aphront/AphrontRequest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/aphront/AphrontRequest.php b/src/aphront/AphrontRequest.php index 56d424ef36..8e57d77189 100644 --- a/src/aphront/AphrontRequest.php +++ b/src/aphront/AphrontRequest.php @@ -38,7 +38,6 @@ final class AphrontRequest { private $path; private $requestData; private $user; - private $env; private $applicationConfiguration; final public function __construct($host, $path) {