annotate vendor/symfony/phpunit-bridge/Legacy/CommandForV5.php @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents
children af1871eacc83
rev   line source
Chris@16 1 <?php
Chris@16 2
Chris@16 3 /*
Chris@16 4 * This file is part of the Symfony package.
Chris@16 5 *
Chris@16 6 * (c) Fabien Potencier <fabien@symfony.com>
Chris@16 7 *
Chris@16 8 * For the full copyright and license information, please view the LICENSE
Chris@16 9 * file that was distributed with this source code.
Chris@16 10 */
Chris@16 11
Chris@16 12 namespace Symfony\Bridge\PhpUnit\Legacy;
Chris@16 13
Chris@16 14 /**
Chris@16 15 * {@inheritdoc}
Chris@16 16 *
Chris@16 17 * @internal
Chris@16 18 */
Chris@16 19 class CommandForV5 extends \PHPUnit_TextUI_Command
Chris@16 20 {
Chris@16 21 /**
Chris@16 22 * {@inheritdoc}
Chris@16 23 */
Chris@16 24 protected function createRunner()
Chris@16 25 {
Chris@16 26 return new TestRunnerForV5($this->arguments['loader']);
Chris@16 27 }
Chris@16 28 }