Skip to content

Commit 9e985a9

Browse files
b1rdexondrejmirtes
authored andcommitted
Add KernelBrowser stub
Fixes #216
1 parent 9b8b650 commit 9e985a9

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

Diff for: extension.neon

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ parameters:
99
constant_hassers: true
1010
console_application_loader: null
1111
stubFiles:
12+
- stubs/Symfony/Bundle/FrameworkBundle/KernelBrowser.stub
1213
- stubs/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.stub
1314
- stubs/Symfony/Bundle/FrameworkBundle/Test/TestContainer.stub
1415
- stubs/Symfony/Component/Form/ChoiceList/Loader/ChoiceLoaderInterface.stub
+13
Original file line numberDiff line numberDiff line change
@@ -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+
{
9+
/**
10+
* @return TestContainer
11+
*/
12+
abstract public function getContainer();
13+
}

0 commit comments

Comments
 (0)