Mercurial > hg > isophonics-drupal-site
comparison 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 |
comparison
equal
deleted
inserted
replaced
15:e200cb7efeb3 | 16:c2387f117808 |
---|---|
1 <?php | |
2 | |
3 /* | |
4 * This file is part of the Symfony package. | |
5 * | |
6 * (c) Fabien Potencier <fabien@symfony.com> | |
7 * | |
8 * For the full copyright and license information, please view the LICENSE | |
9 * file that was distributed with this source code. | |
10 */ | |
11 | |
12 namespace Symfony\Bridge\PhpUnit\Legacy; | |
13 | |
14 /** | |
15 * {@inheritdoc} | |
16 * | |
17 * @internal | |
18 */ | |
19 class CommandForV5 extends \PHPUnit_TextUI_Command | |
20 { | |
21 /** | |
22 * {@inheritdoc} | |
23 */ | |
24 protected function createRunner() | |
25 { | |
26 return new TestRunnerForV5($this->arguments['loader']); | |
27 } | |
28 } |