File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
matrix :
10
10
php :
11
+ - ' 5.5'
12
+ - ' 5.6'
11
13
- ' 7.2'
12
14
- ' 7.3'
13
15
- ' 7.4'
77
79
run : composer validate --strict --no-check-lock
78
80
79
81
- name : Run tests
80
- run : vendor/bin/phpunit
82
+ run : vendor/bin/simple- phpunit
Original file line number Diff line number Diff line change 17
17
"symfony/yaml" : " ^3.4 || ^4.3 || ^5.0 || ^6.0"
18
18
},
19
19
"require-dev" : {
20
- "phpunit /phpunit" : " ^8.5 || ^9.4 "
20
+ "symfony /phpunit-bridge " : " ^4.4 || ^5.3 "
21
21
},
22
22
"autoload" : {
23
23
"psr-4" : {
Original file line number Diff line number Diff line change @@ -81,17 +81,17 @@ public function addConfigFile($configFile)
81
81
$ this ->configFiles [] = $ configFile ;
82
82
}
83
83
84
- public function getCacheDir (): string
84
+ public function getCacheDir ()
85
85
{
86
86
return sys_get_temp_dir ().'/NyholmBundleTest/ ' .$ this ->cachePrefix ;
87
87
}
88
88
89
- public function getLogDir (): string
89
+ public function getLogDir ()
90
90
{
91
91
return sys_get_temp_dir ().'/NyholmBundleTest/log ' ;
92
92
}
93
93
94
- public function getProjectDir (): string
94
+ public function getProjectDir ()
95
95
{
96
96
if (null === $ this ->fakedProjectDir ) {
97
97
return realpath (__DIR__ .'/../../../../ ' );
@@ -116,7 +116,7 @@ public function setProjectDir($projectDir)
116
116
$ this ->fakedProjectDir = $ projectDir ;
117
117
}
118
118
119
- public function registerBundles (): iterable
119
+ public function registerBundles ()
120
120
{
121
121
$ this ->bundlesToRegister = array_unique ($ this ->bundlesToRegister );
122
122
$ bundles = [];
@@ -204,7 +204,7 @@ public function loadRoutes(LoaderInterface $loader)
204
204
/**
205
205
* {@inheritdoc}
206
206
*/
207
- protected function buildContainer (): ContainerBuilder
207
+ protected function buildContainer ()
208
208
{
209
209
$ container = parent ::buildContainer ();
210
210
You can’t perform that action at this time.
0 commit comments