Mercurial > hg > isophonics-drupal-site
comparison vendor/nikic/php-parser/test/PhpParser/Builder/NamespaceTest.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 5fb285c0d0e3 |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
3 namespace PhpParser\Builder; | 3 namespace PhpParser\Builder; |
4 | 4 |
5 use PhpParser\Comment\Doc; | 5 use PhpParser\Comment\Doc; |
6 use PhpParser\Node; | 6 use PhpParser\Node; |
7 use PhpParser\Node\Stmt; | 7 use PhpParser\Node\Stmt; |
8 use PHPUnit\Framework\TestCase; | |
9 | 8 |
10 class NamespaceTest extends TestCase | 9 class NamespaceTest extends \PHPUnit\Framework\TestCase |
11 { | 10 { |
12 protected function createNamespaceBuilder($fqn) { | 11 protected function createNamespaceBuilder($fqn) { |
13 return new Namespace_($fqn); | 12 return new Namespace_($fqn); |
14 } | 13 } |
15 | 14 |