File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed
stubs/Symfony/Bundle/FrameworkBundle/Test Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ parameters:
99 constant_hassers : true
1010 console_application_loader : null
1111 stubFiles :
12+ - stubs/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.stub
13+ - stubs/Symfony/Bundle/FrameworkBundle/Test/TestContainer.stub
1214 - stubs/Symfony/Component/Form/ChoiceList/Loader/ChoiceLoaderInterface.stub
1315 - stubs/Symfony/Component/DependencyInjection/ContainerBuilder.stub
1416 - stubs/Symfony/Component/DependencyInjection/Extension/ExtensionInterface.stub
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Symfony\Bundle\FrameworkBundle\Test;
4+
5+ abstract class KernelTestCase
6+ {
7+ /**
8+ * @var TestContainer
9+ */
10+ protected static $container;
11+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Symfony\Bundle\FrameworkBundle\Test;
4+
5+ class TestContainer
6+ {
7+ }
You can’t perform that action at this time.
0 commit comments