File tree 3 files changed +138
-65
lines changed
3 files changed +138
-65
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "name" :" codeception/module-symfony" ,
3
- "description" :" Codeception module for Symfony framework" ,
4
- "keywords" :[" codeception" , " symfony" ],
5
- "homepage" :" https://codeception.com/" ,
6
- "type" :" library" ,
7
- "license" :" MIT" ,
8
- "authors" :[
2
+ "name" : " codeception/module-symfony" ,
3
+ "description" : " Codeception module for Symfony framework" ,
4
+ "keywords" : [" codeception" , " symfony" ],
5
+ "homepage" : " https://codeception.com/" ,
6
+ "type" : " library" ,
7
+ "license" : " MIT" ,
8
+ "authors" : [
9
9
{
10
- "name" :" Michael Bodnarchuk"
10
+ "name" : " Michael Bodnarchuk"
11
+ },
12
+ {
13
+ "name" : " Gustavo Nieves" ,
14
+ "homepage" : " https://medium.com/@ganieves"
11
15
}
12
16
],
13
17
"minimum-stability" : " RC" ,
25
29
"codeception/module-sequence" : " ^1.0" ,
26
30
"vlucas/phpdotenv" : " ^3.6 | ^4.1 | ^5.2"
27
31
},
28
- "autoload" :{
32
+ "autoload" : {
29
33
"classmap" : [" src/" ]
30
34
},
31
35
"config" : {
Original file line number Diff line number Diff line change 10
10
use Symfony \Component \HttpFoundation \Response ;
11
11
use Symfony \Component \HttpKernel \HttpKernelBrowser ;
12
12
use Symfony \Component \HttpKernel \Kernel ;
13
+ use function array_keys ;
14
+ use function class_alias ;
15
+ use function codecept_debug ;
13
16
14
17
if (Kernel::VERSION_ID < 40300 ) {
15
18
class_alias ('Symfony\Component\HttpKernel\Client ' , 'Symfony\Component\HttpKernel\HttpKernelBrowser ' );
@@ -77,7 +80,7 @@ protected function doRequest($request): Response
77
80
* are updated from service container before kernel shutdown
78
81
* and injected into newly initialized container after kernel boot.
79
82
*/
80
- public function rebootKernel ()
83
+ public function rebootKernel (): void
81
84
{
82
85
if ($ this ->container ) {
83
86
foreach (array_keys ($ this ->persistentServices ) as $ serviceName ) {
You can’t perform that action at this time.
0 commit comments