1 | <?php |
||
8 | class HelperTest extends \PHPUnit_Framework_TestCase |
||
9 | { |
||
10 | public function testCamelCase() |
||
15 | |||
16 | public function testCamelCaseIgnoresWhenAlreadyCorrect() |
||
21 | |||
22 | public function testCamelCaseWithUppercaseValue() |
||
27 | |||
28 | public function testInitializeIgnoresNullValues() |
||
33 | |||
34 | public function testInitializeIgnoresString() |
||
39 | |||
40 | public function testInitializeCallsSetters() |
||
48 | } |
||
49 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: