Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/phpunit-bridge/Legacy/CommandForV6.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 use PHPUnit\TextUI\Command as BaseCommand; | |
15 use PHPUnit\TextUI\TestRunner as BaseRunner; | |
16 use Symfony\Bridge\PhpUnit\TextUI\TestRunner; | |
17 | |
18 /** | |
19 * {@inheritdoc} | |
20 * | |
21 * @internal | |
22 */ | |
23 class CommandForV6 extends BaseCommand | |
24 { | |
25 /** | |
26 * {@inheritdoc} | |
27 */ | |
28 protected function createRunner(): BaseRunner | |
29 { | |
30 return new TestRunner($this->arguments['loader']); | |
31 } | |
32 } |