2016-08-05 10:43:56 +00:00
|
|
|
<?php
|
2017-03-08 14:07:29 +00:00
|
|
|
|
2016-08-05 10:43:56 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Mock;
|
|
|
|
|
2016-09-06 13:48:37 +00:00
|
|
|
use Composer\Factory;
|
2016-08-05 10:43:56 +00:00
|
|
|
use Composer\XdebugHandler;
|
|
|
|
|
|
|
|
class XdebugHandlerMock extends XdebugHandler
|
|
|
|
{
|
|
|
|
public $restarted;
|
2016-09-06 13:48:37 +00:00
|
|
|
public $output;
|
2016-12-15 20:38:16 +00:00
|
|
|
public $testVersion = '2.5.0';
|
2016-08-05 10:43:56 +00:00
|
|
|
|
2016-09-06 13:48:37 +00:00
|
|
|
public function __construct($loaded = null)
|
2016-08-05 10:43:56 +00:00
|
|
|
{
|
2016-09-06 13:48:37 +00:00
|
|
|
$this->output = Factory::createOutput();
|
|
|
|
parent::__construct($this->output);
|
2016-08-05 10:43:56 +00:00
|
|
|
|
2017-03-08 14:07:29 +00:00
|
|
|
$loaded = null === $loaded ? true : $loaded;
|
2016-08-05 10:43:56 +00:00
|
|
|
$class = new \ReflectionClass(get_parent_class($this));
|
2016-12-15 20:38:16 +00:00
|
|
|
|
2016-08-05 10:43:56 +00:00
|
|
|
$prop = $class->getProperty('loaded');
|
|
|
|
$prop->setAccessible(true);
|
|
|
|
$prop->setValue($this, $loaded);
|
|
|
|
|
2016-12-15 20:38:16 +00:00
|
|
|
$prop = $class->getProperty('version');
|
|
|
|
$prop->setAccessible(true);
|
|
|
|
$version = $loaded ? $this->testVersion : '';
|
|
|
|
$prop->setValue($this, $version);
|
|
|
|
|
2016-08-05 10:43:56 +00:00
|
|
|
$this->restarted = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function restart($command)
|
|
|
|
{
|
|
|
|
$this->restarted = true;
|
|
|
|
}
|
|
|
|
}
|