Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Bridge\PhpUnit\TextUI; Chris@0: Chris@0: if (!class_exists('PHPUnit_TextUI_Command')) { Chris@0: return; Chris@0: } Chris@0: Chris@0: /** Chris@0: * {@inheritdoc} Chris@0: */ Chris@0: class Command extends \PHPUnit_TextUI_Command Chris@0: { Chris@0: /** Chris@0: * {@inheritdoc} Chris@0: */ Chris@0: protected function createRunner() Chris@0: { Chris@0: return new TestRunner($this->arguments['loader']); Chris@0: } Chris@0: }