main
johnstevenson 7 years ago
parent ed97c2116c
commit f8dc77db18

@ -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');
}
}

Loading…
Cancel
Save