@@ -161,8 +161,8 @@ |
||
| 161 | 161 | private function dateTimeVal($val) |
| 162 | 162 | { |
| 163 | 163 | if ($val === null || |
| 164 | - (is_string($val) && ! strlen(trim($val))) || |
|
| 165 | - (is_array($val) && ! count(array_filter($val, 'strlen'))) |
|
| 164 | + (is_string($val) && !strlen(trim($val))) || |
|
| 165 | + (is_array($val) && !count(array_filter($val, 'strlen'))) |
|
| 166 | 166 | ) { |
| 167 | 167 | return null; |
| 168 | 168 | } |
@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | } |
| 271 | 271 | |
| 272 | 272 | /** |
| 273 | - * @return array |
|
| 273 | + * @return string[] |
|
| 274 | 274 | */ |
| 275 | 275 | public function validationMethods() |
| 276 | 276 | { |
@@ -365,7 +365,7 @@ discard block |
||
| 365 | 365 | } |
| 366 | 366 | |
| 367 | 367 | /** |
| 368 | - * @param integer|string $timestamp Timestamp. |
|
| 368 | + * @param integer $timestamp Timestamp. |
|
| 369 | 369 | * @return boolean |
| 370 | 370 | */ |
| 371 | 371 | private function isValidTimeStamp($timestamp) |
@@ -570,7 +570,7 @@ |
||
| 570 | 570 | $objs = (array)$this->structureVal($val); |
| 571 | 571 | $val = []; |
| 572 | 572 | if (!empty($objs)) { |
| 573 | - $val = []; |
|
| 573 | + $val = []; |
|
| 574 | 574 | foreach ($objs as $obj) { |
| 575 | 575 | $obj->saveProperties(); |
| 576 | 576 | $val[] = $obj->data(); |
@@ -277,7 +277,7 @@ |
||
| 277 | 277 | } |
| 278 | 278 | |
| 279 | 279 | /** |
| 280 | - * @return mixed |
|
| 280 | + * @return string |
|
| 281 | 281 | */ |
| 282 | 282 | public function defaultVal() |
| 283 | 283 | { |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | * |
| 62 | 62 | * @param array $propertyIdents Optional. List of property identifiers |
| 63 | 63 | * for retrieving a subset of property objects. |
| 64 | - * @return PropertyInterface[]|\Generator |
|
| 64 | + * @return \Generator |
|
| 65 | 65 | */ |
| 66 | 66 | public function properties(array $propertyIdents = null) |
| 67 | 67 | { |
@@ -271,7 +271,7 @@ |
||
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | /** |
| 274 | - * @return array |
|
| 274 | + * @return string[] |
|
| 275 | 275 | */ |
| 276 | 276 | public function validationMethods() |
| 277 | 277 | { |
@@ -741,7 +741,7 @@ |
||
| 741 | 741 | /** |
| 742 | 742 | * Legacy support of active() instead of getActive(). |
| 743 | 743 | * |
| 744 | - * @return string |
|
| 744 | + * @return boolean |
|
| 745 | 745 | */ |
| 746 | 746 | public function active() |
| 747 | 747 | { |
@@ -351,13 +351,13 @@ discard block |
||
| 351 | 351 | return $val; |
| 352 | 352 | } |
| 353 | 353 | |
| 354 | - $val = array_map([ $this, 'parseOne' ], $val); |
|
| 354 | + $val = array_map([$this, 'parseOne'], $val); |
|
| 355 | 355 | } else { |
| 356 | 356 | if ($this['l10n']) { |
| 357 | 357 | $val = $this->parseValAsL10n($val); |
| 358 | 358 | |
| 359 | 359 | if ($val) { |
| 360 | - $val->sanitize([ $this, 'parseOne' ]); |
|
| 360 | + $val->sanitize([$this, 'parseOne']); |
|
| 361 | 361 | } |
| 362 | 362 | } else { |
| 363 | 363 | $val = $this->parseOne($val); |
@@ -478,7 +478,7 @@ discard block |
||
| 478 | 478 | public function getLabel() |
| 479 | 479 | { |
| 480 | 480 | if ($this->label === null) { |
| 481 | - return ucwords(str_replace([ '.', '_' ], ' ', $this->ident())); |
|
| 481 | + return ucwords(str_replace(['.', '_'], ' ', $this->ident())); |
|
| 482 | 482 | } |
| 483 | 483 | |
| 484 | 484 | return $this->label; |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | * |
| 160 | 160 | * @param string|boolean $event A specific event to check or a global flag to set. |
| 161 | 161 | * @throws OutOfBoundsException If the effects event does not exist. |
| 162 | - * @return mixed Returns TRUE or FALSE if the property applies effects for the given event. |
|
| 162 | + * @return boolean Returns TRUE or FALSE if the property applies effects for the given event. |
|
| 163 | 163 | */ |
| 164 | 164 | public function canApplyEffects($event) |
| 165 | 165 | { |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | /** |
| 180 | 180 | * Retrieve the supported events where effects can be applied. |
| 181 | 181 | * |
| 182 | - * @return array |
|
| 182 | + * @return string[] |
|
| 183 | 183 | */ |
| 184 | 184 | public function acceptedEffectsEvents() |
| 185 | 185 | { |
@@ -465,7 +465,7 @@ discard block |
||
| 465 | 465 | * @param array $effects The effects to apply on the target. |
| 466 | 466 | * @param ImageInterface|null $image Optional. The image for processing. |
| 467 | 467 | * @throws InvalidArgumentException If the $value is not a string. |
| 468 | - * @return mixed Returns the processed target or NULL. |
|
| 468 | + * @return null|string Returns the processed target or NULL. |
|
| 469 | 469 | */ |
| 470 | 470 | private function processEffectsOne($value, array $effects = null, ImageInterface $image = null) |
| 471 | 471 | { |
@@ -418,7 +418,7 @@ |
||
| 418 | 418 | 'reset' => false, |
| 419 | 419 | 'copy' => null, |
| 420 | 420 | ]; |
| 421 | - $fxGroup = $blueprint; |
|
| 421 | + $fxGroup = $blueprint; |
|
| 422 | 422 | foreach ($effects as $effect) { |
| 423 | 423 | if (isset($effect['type']) && $effect['type'] === 'condition') { |
| 424 | 424 | $grouped[] = array_merge( |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
| 112 | - * @param mixed $label The true label. |
|
| 112 | + * @param string $label The true label. |
|
| 113 | 113 | * @return self |
| 114 | 114 | */ |
| 115 | 115 | public function setTrueLabel($label) |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
| 134 | - * @param mixed $label The false label. |
|
| 134 | + * @param string $label The false label. |
|
| 135 | 135 | * @return self |
| 136 | 136 | */ |
| 137 | 137 | public function setFalseLabel($label) |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | foreach ($methods as $method) { |
| 26 | 26 | $method = $this->camelize($method); |
| 27 | 27 | |
| 28 | - $func = [ $property, 'validate'.ucfirst($method) ]; |
|
| 28 | + $func = [$property, 'validate'.ucfirst($method)]; |
|
| 29 | 29 | if (is_callable($func)) { |
| 30 | 30 | $result = $result && call_user_func($func); |
| 31 | 31 | } |