Skip to content

Commit

Permalink
This property name collides with the extended PHPUnit_Framework_TestC…
Browse files Browse the repository at this point in the history
…ase.
  • Loading branch information
yunosh committed Oct 26, 2018
1 parent 8e0303b commit 56b773c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Horde/ActiveSync/Factory/TestServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ class Horde_ActiveSync_Factory_TestServer extends Horde_Test_Case
public $server;
public $driver;
public $input;
public $output;
public $_output;
public $request;

public function __construct($params = array())
{
$this->driver = $this->getMockSkipConstructor('Horde_ActiveSync_Driver_Base');
$this->input = fopen('php://memory', 'wb+');
$decoder = new Horde_ActiveSync_Wbxml_Decoder($this->input);
$this->output = fopen('php://memory', 'wb+');
$encoder = new Horde_ActiveSync_Wbxml_Encoder($this->output);
$this->_output = fopen('php://memory', 'wb+');
$encoder = new Horde_ActiveSync_Wbxml_Encoder($this->_output);
$state = $this->getMockSkipConstructor('Horde_ActiveSync_State_Base');
$this->request = $this->getMockSkipConstructor('Horde_Controller_Request_Http');
$this->request->expects($this->any())
Expand Down

0 comments on commit 56b773c

Please sign in to comment.