@@ -113,7 +113,7 @@ |
||
| 113 | 113 | public function hasTags(array $tags)/*# : array */ |
| 114 | 114 | { |
| 115 | 115 | $x = []; |
| 116 | - foreach($tags as $tag) { |
|
| 116 | + foreach ($tags as $tag) { |
|
| 117 | 117 | if ($this->hasTag($tag)) { |
| 118 | 118 | $x[] = $tag; |
| 119 | 119 | } |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | * @var string |
| 32 | 32 | * @access protected |
| 33 | 33 | */ |
| 34 | - protected $openTag = '<span class="message">'; |
|
| 34 | + protected $openTag = '<span class="message">'; |
|
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | 37 | * closing tag |
@@ -48,9 +48,8 @@ |
||
| 48 | 48 | */ |
| 49 | 49 | protected function stringize(array &$arguments) |
| 50 | 50 | { |
| 51 | - array_walk($arguments, function (&$value) { |
|
| 52 | - $value = is_scalar($value) ? (string) $value : |
|
| 53 | - substr(print_r($value, true), 0, 50); |
|
| 51 | + array_walk($arguments, function(&$value) { |
|
| 52 | + $value = is_scalar($value) ? (string) $value : substr(print_r($value, true), 0, 50); |
|
| 54 | 53 | }); |
| 55 | 54 | return $this; |
| 56 | 55 | } |
@@ -27,27 +27,27 @@ |
||
| 27 | 27 | /* |
| 28 | 28 | * Class "%s" not found |
| 29 | 29 | */ |
| 30 | - const MSG_CLASS_NOTFOUND = 1606161030; |
|
| 30 | + const MSG_CLASS_NOTFOUND = 1606161030; |
|
| 31 | 31 | |
| 32 | 32 | /* |
| 33 | 33 | * Static class "%s" not instantiable |
| 34 | 34 | */ |
| 35 | - const MSG_CLASS_STATIC = 1606161031; |
|
| 35 | + const MSG_CLASS_STATIC = 1606161031; |
|
| 36 | 36 | |
| 37 | 37 | /* |
| 38 | 38 | * Path "%s" not found |
| 39 | 39 | */ |
| 40 | - const MSG_PATH_NOTFOUND = 1606161040; |
|
| 40 | + const MSG_PATH_NOTFOUND = 1606161040; |
|
| 41 | 41 | |
| 42 | 42 | /* |
| 43 | 43 | * Path "%s" not readable |
| 44 | 44 | */ |
| 45 | - const MSG_PATH_NONREADABLE = 1606161041; |
|
| 45 | + const MSG_PATH_NONREADABLE = 1606161041; |
|
| 46 | 46 | |
| 47 | 47 | /* |
| 48 | 48 | * Path "%s" not writable |
| 49 | 49 | */ |
| 50 | - const MSG_PATH_NONWRITABLE = 1606161042; |
|
| 50 | + const MSG_PATH_NONWRITABLE = 1606161042; |
|
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * {@inheritDoc} |