Skip to content

Commit f858de7

Browse files
committed
CliParser: Change variable names to camelCaps
1 parent f8d1a32 commit f858de7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Lunr/Shadow/Tests/GetoptCliParserParseTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
/**

0 commit comments

Comments
 (0)