We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b8b650 commit 9e985a9Copy full SHA for 9e985a9
extension.neon
@@ -9,6 +9,7 @@ parameters:
9
constant_hassers: true
10
console_application_loader: null
11
stubFiles:
12
+ - stubs/Symfony/Bundle/FrameworkBundle/KernelBrowser.stub
13
- stubs/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.stub
14
- stubs/Symfony/Bundle/FrameworkBundle/Test/TestContainer.stub
15
- stubs/Symfony/Component/Form/ChoiceList/Loader/ChoiceLoaderInterface.stub
stubs/Symfony/Bundle/FrameworkBundle/KernelBrowser.stub
@@ -0,0 +1,13 @@
1
+<?php
2
+
3
+namespace Symfony\Bundle\FrameworkBundle;
4
5
+use Symfony\Bundle\FrameworkBundle\Test\TestContainer;
6
7
+abstract class KernelBrowser
8
+{
+ /**
+ * @return TestContainer
+ */
+ abstract public function getContainer();
+}
0 commit comments