@@ -12,4 +12,4 @@ |
||
12 | 12 | |
13 | 13 | // --- EXAMPLE START --- |
14 | 14 | $data = 15; |
15 | -var_dump(IsInRange::check($data, 10,20)); |
|
15 | +var_dump(IsInRange::check($data, 10, 20)); |
@@ -12,4 +12,4 @@ |
||
12 | 12 | |
13 | 13 | // --- EXAMPLE START --- |
14 | 14 | $data = 15; |
15 | -var_dump(IsInRange::using(10,20)->inspect($data)); |
|
16 | 15 | \ No newline at end of file |
16 | +var_dump(IsInRange::using(10, 20)->inspect($data)); |
|
17 | 17 | \ No newline at end of file |
@@ -90,7 +90,7 @@ |
||
90 | 90 | public function inspect($refProp) |
91 | 91 | { |
92 | 92 | // robustness! |
93 | - if (! $refProp instanceof ReflectionProperty) { |
|
93 | + if (!$refProp instanceof ReflectionProperty) { |
|
94 | 94 | throw new TypeError('$refProp is not a ReflectionProperty, is a ' . get_printable_type($refProp)); |
95 | 95 | } |
96 | 96 | return static::check($refProp); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | // --- EXAMPLE START --- |
13 | 13 | try { |
14 | - $list = 'hello, world!'; // this is not really a list! |
|
14 | + $list = 'hello, world!'; // this is not really a list! |
|
15 | 15 | check_is_array_list($list); |
16 | 16 | } |
17 | 17 | catch (TypeError $e) { |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | // --- EXAMPLE START --- |
13 | 13 | $list = [ |
14 | - [ 'hello, world!'], // this is okay |
|
14 | + ['hello, world!'], // this is okay |
|
15 | 15 | 'hello, world!' // this is not okay |
16 | 16 | ]; |
17 | 17 | $isArray = check_is_array_list($list); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | // --- EXAMPLE START --- |
13 | 13 | $list = [ |
14 | - [ 'hello, world!' ] |
|
14 | + ['hello, world!'] |
|
15 | 15 | ]; |
16 | 16 | $isArray = check_is_array_list($list); |
17 | 17 | var_dump($isArray); |
18 | 18 | \ No newline at end of file |