@@ -128,8 +128,6 @@ public function getSettedIpDataProvider(): array
128
128
129
129
/**
130
130
* @dataProvider getSettedIpDataProvider
131
- * @param $testValue
132
- * @param $expected
133
131
*/
134
132
public function testSettedIp (array $ setIp , $ testValue , $ expected ): void
135
133
{
@@ -158,8 +156,6 @@ public function getAddedIpDataProvider(): array
158
156
159
157
/**
160
158
* @dataProvider getAddedIpDataProvider
161
- * @param $testValue
162
- * @param $expected
163
159
*/
164
160
public function testAddedIp (array $ setIp , $ testValue , $ expected ): void
165
161
{
@@ -195,7 +191,7 @@ public function testEnabler($testValue): void
195
191
public function testMissingEnablerMode (): void
196
192
{
197
193
Assert::exception (function () {
198
- $ detector = new Detector (Detector::MODE_FULL );
194
+ new Detector (Detector::MODE_FULL );
199
195
}, InconsistentEnablerModeException::class);
200
196
}
201
197
@@ -214,7 +210,7 @@ public function testMissingEnablerShortcut(): void
214
210
}, InconsistentEnablerModeException::class);
215
211
}
216
212
217
- public function testPluginPrepend ()
213
+ public function testPluginPrepend (): void
218
214
{
219
215
$ detector = new Detector (0 );
220
216
$ detector ->prependPlugin (
@@ -229,7 +225,7 @@ public function __invoke(Detector $detector): ?bool
229
225
$ detector ->isDebugMode ();
230
226
}
231
227
232
- public function testPluginAppend ()
228
+ public function testPluginAppend (): void
233
229
{
234
230
$ detector = new Detector (0 );
235
231
$ detector ->appendPlugin (
0 commit comments