File tree 3 files changed +20
-0
lines changed
stubs/Symfony/Bundle/FrameworkBundle/Test
3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ parameters:
9
9
constant_hassers : true
10
10
console_application_loader : null
11
11
stubFiles :
12
+ - stubs/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.stub
13
+ - stubs/Symfony/Bundle/FrameworkBundle/Test/TestContainer.stub
12
14
- stubs/Symfony/Component/Form/ChoiceList/Loader/ChoiceLoaderInterface.stub
13
15
- stubs/Symfony/Component/DependencyInjection/ContainerBuilder.stub
14
16
- 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