@@ -39,7 +39,7 @@ |
||
39 | 39 | { |
40 | 40 | preg_match_all |
41 | 41 | ( |
42 | - '/^' |
|
42 | + '/^' |
|
43 | 43 | . '[ \t]*\*[ \t]*' |
44 | 44 | . '@([a-zA-Z]+)' |
45 | 45 | . '(.*)' |
@@ -27,7 +27,7 @@ |
||
27 | 27 | private function getScalar($value) |
28 | 28 | { |
29 | 29 | return |
30 | - (is_object($value) ? spl_object_hash($value) |
|
30 | + (is_object($value) ? spl_object_hash($value) |
|
31 | 31 | : (is_array($value) ? implode($value) |
32 | 32 | : ( (string)$value))); |
33 | 33 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | { |
18 | 18 | parent::__construct |
19 | 19 | ( |
20 | - 'Tried to set an illegal property type for ' |
|
20 | + 'Tried to set an illegal property type for ' |
|
21 | 21 | . $class .'::$' . $property . '. Excpected ' . $expected |
22 | 22 | . ', got ' . $got, |
23 | 23 | 0, |
@@ -56,7 +56,7 @@ |
||
56 | 56 | { |
57 | 57 | parent::__construct |
58 | 58 | ( |
59 | - 'Cannot ' . static::ACCESS_TYPE . ' property: ' |
|
59 | + 'Cannot ' . static::ACCESS_TYPE . ' property: ' |
|
60 | 60 | . $class . '::$' . $property . '. ' . static::ERROR_REASON, |
61 | 61 | 0, |
62 | 62 | $previous |
@@ -39,7 +39,7 @@ |
||
39 | 39 | { |
40 | 40 | parent::__construct |
41 | 41 | ( |
42 | - 'Missing required parameter in constructor. ' |
|
42 | + 'Missing required parameter in constructor. ' |
|
43 | 43 | . $class . ' requires a value for ' . $parameter, |
44 | 44 | 0, |
45 | 45 | $previous |