File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,18 +35,18 @@ public function testWrapArgumentReturnsEmptyArrayForFalse(): void
3535 /**
3636 * Test that wrap_argument() replaces a FALSE value with an empty array.
3737 *
38- * @param mixed $cli_value Value to wrap
38+ * @param mixed $cliValue Value to wrap
3939 *
4040 * @dataProvider valueProvider
4141 * @covers Lunr\Shadow\GetoptCliParser::wrap_argument
4242 */
43- public function testWrapArgumentReturnsValueWrappedInArray ($ cli_value ): void
43+ public function testWrapArgumentReturnsValueWrappedInArray ($ cliValue ): void
4444 {
4545 $ method = $ this ->getReflectionMethod ('wrap_argument ' );
4646
47- $ value = $ method ->invokeArgs ($ this ->class , [ $ cli_value ]);
47+ $ value = $ method ->invokeArgs ($ this ->class , [ $ cliValue ]);
4848
49- $ this ->assertEquals ([ $ cli_value ], $ value );
49+ $ this ->assertEquals ([ $ cliValue ], $ value );
5050 }
5151
5252 /**
You can’t perform that action at this time.
0 commit comments