@@ -21,7 +21,7 @@ |
||
21 | 21 | public static function fromVars($prefix = null, $glue = null, $suffix = null) |
22 | 22 | { |
23 | 23 | return new static( |
24 | - function ($key, $value) use ($prefix, $glue, $suffix) { |
|
24 | + function($key, $value) use ($prefix, $glue, $suffix) { |
|
25 | 25 | return $prefix.$key.$glue.$value.$suffix; |
26 | 26 | } |
27 | 27 | ); |
@@ -20,7 +20,7 @@ |
||
20 | 20 | public static function toArrayWithPlural($pluralValue = false, $pluralKey = false) |
21 | 21 | { |
22 | 22 | return new static( |
23 | - function ($value) use ($pluralValue, $pluralKey) { |
|
23 | + function($value) use ($pluralValue, $pluralKey) { |
|
24 | 24 | return array_filter([ |
25 | 25 | key($value), |
26 | 26 | reset($value), |
@@ -22,8 +22,8 @@ |
||
22 | 22 | { |
23 | 23 | parent::__construct($value); |
24 | 24 | |
25 | - if (! preg_match('/[A-za-z]/', $this->getValue())) { |
|
26 | - throw new InvalidTypeException($value, ['word']); |
|
25 | + if (!preg_match('/[A-za-z]/', $this->getValue())) { |
|
26 | + throw new InvalidTypeException($value, [ 'word' ]); |
|
27 | 27 | } |
28 | 28 | } |
29 | 29 |
@@ -62,8 +62,8 @@ |
||
62 | 62 | */ |
63 | 63 | public function count() |
64 | 64 | { |
65 | - if (! method_exists($this->getValue(), 'count')) { |
|
66 | - throw new \Exception('[' . $this->getShortName() . '] does not have a count method.'); |
|
65 | + if (!method_exists($this->getValue(), 'count')) { |
|
66 | + throw new \Exception('['.$this->getShortName().'] does not have a count method.'); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | return $this->getValue()->count(); |