Skip to content

Commit 8e14b2a

Browse files
committed
Add KernelBrowser stub
Fixes #216
1 parent a5aed92 commit 8e14b2a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

extension.neon

Lines changed: 1 addition & 0 deletions
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
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Symfony\Bundle\FrameworkBundle\Test;
4+
5+
abstract class KernelBrowser
6+
{
7+
/**
8+
* @return TestContainer
9+
*/
10+
abstract public function getContainer();
11+
}

0 commit comments

Comments
 (0)