1
0
Fork 0
pull/7174/head
johnstevenson 2018-03-11 18:00:03 +00:00
parent ed97c2116c
commit f8dc77db18
1 changed files with 11 additions and 2 deletions

View File

@ -12,11 +12,20 @@
namespace Composer;
trigger_error('The ' . __NAMESPACE__ . '\XdebugHandler class is deprecated, use Composer\XdebugHandler\XdebugHandler instead.', E_USER_DEPRECATED);
use Symfony\Component\Console\Output\OutputInterface;
trigger_error('The ' . __NAMESPACE__ . '\XdebugHandler class is deprecated, use Composer\XdebugHandler\XdebugHandler instead,', E_USER_DEPRECATED);
/**
* @deprecated use Composer\XdebugHandler\XdebugHandler instead
*/
class XdebugHandler
class XdebugHandler extends XdebugHandler\XdebugHandler
{
const ENV_ALLOW = 'COMPOSER_ALLOW_XDEBUG';
const ENV_VERSION = 'COMPOSER_XDEBUG_VERSION';
public function __construct(OutputInterface $output)
{
parent::__construct('composer', '--ansi');
}
}