Mercurial > hg > isophonics-drupal-site
annotate vendor/symfony/phpunit-bridge/Legacy/CommandForV6.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | c2387f117808 |
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 use PHPUnit\TextUI\Command as BaseCommand; |
Chris@16 | 15 use PHPUnit\TextUI\TestRunner as BaseRunner; |
Chris@16 | 16 use Symfony\Bridge\PhpUnit\TextUI\TestRunner; |
Chris@16 | 17 |
Chris@16 | 18 /** |
Chris@16 | 19 * {@inheritdoc} |
Chris@16 | 20 * |
Chris@16 | 21 * @internal |
Chris@16 | 22 */ |
Chris@16 | 23 class CommandForV6 extends BaseCommand |
Chris@16 | 24 { |
Chris@16 | 25 /** |
Chris@16 | 26 * {@inheritdoc} |
Chris@16 | 27 */ |
Chris@16 | 28 protected function createRunner(): BaseRunner |
Chris@16 | 29 { |
Chris@16 | 30 return new TestRunner($this->arguments['loader']); |
Chris@16 | 31 } |
Chris@16 | 32 } |