Skip to content

Commit e02ce1e

Browse files
committed
Renamed parameters.
1 parent d400338 commit e02ce1e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/FallenException.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ class FallenException extends RuntimeException
1212
/**
1313
* Object constructor.
1414
*
15-
* @param string $theName The name or description of the variable of expression.
16-
* @param string $theValue The actual value that.
15+
* @param string $name The name or description of the variable of expression.
16+
* @param string $value The actual value the variable or expression.
1717
*
1818
* Example:
1919
* ```
@@ -37,9 +37,9 @@ class FallenException extends RuntimeException
3737
* }
3838
* ```
3939
*/
40-
public function __construct($theName, $theValue)
40+
public function __construct($name, $value)
4141
{
42-
parent::__construct("Unknown or unexpected value '%s' for '%s'.", $theValue, $theName);
42+
parent::__construct("Unknown or unexpected value '%s' for '%s'.", $value, $name);
4343
}
4444

4545
//--------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)