mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Set a property so that unit tests run on PHP7
Summary: Without this change PHP throws because idx() is passed null as the property is not intialzied Test Plan: arc unit --everything Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D14345
This commit is contained in:
parent
bbf4ce79e3
commit
6e7ceb996b
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ final class AphrontRequest extends Phobject {
|
|||
private $applicationConfiguration;
|
||||
private $site;
|
||||
private $controller;
|
||||
private $uriData;
|
||||
private $uriData = array();
|
||||
private $cookiePrefix;
|
||||
|
||||
public function __construct($host, $path) {
|
||||
|
|
Loading…
Reference in a new issue