@@ -14,14 +14,14 @@ discard block |
||
14 | 14 | $this->config = $config; |
15 | 15 | } |
16 | 16 | |
17 | - public function find($path, $default=null, $delimiter='.') { |
|
17 | + public function find($path, $default = null, $delimiter = '.') { |
|
18 | 18 | if ($this->pathStartsWithConfig($path, $delimiter)) |
19 | 19 | return $this->evalSubPath($path, $delimiter, $default); |
20 | 20 | |
21 | 21 | return $this->get($this->getFirstToken($path, $delimiter), $default); |
22 | 22 | } |
23 | 23 | |
24 | - private function get($name, $default=null) { |
|
24 | + private function get($name, $default = null) { |
|
25 | 25 | return $this->config->get($name, $default); |
26 | 26 | } |
27 | 27 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | private function getFirstToken($path, $delimiter) { |
37 | - return $this->gettok($path, $delimiter,0); |
|
37 | + return $this->gettok($path, $delimiter, 0); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | private function evalSubPath($path, $delimiter, $default) { |
@@ -24,12 +24,12 @@ |
||
24 | 24 | } |
25 | 25 | |
26 | 26 | public static function required($name) : Particle { |
27 | - $v = new Particle\Validator();; |
|
27 | + $v = new Particle\Validator(); ; |
|
28 | 28 | return new self($name, $v, $v->required($name)); |
29 | 29 | } |
30 | 30 | |
31 | 31 | public static function optional($name) : Particle { |
32 | - $v = new Particle\Validator();; |
|
32 | + $v = new Particle\Validator(); ; |
|
33 | 33 | return new self($name, $v, $v->optional($name)); |
34 | 34 | } |
35 | 35 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | * @see ../docs/config/README.md |
11 | 11 | */ |
12 | 12 | abstract class Config extends Registry { |
13 | - private $locked = false; |
|
13 | + private $locked = false; |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Config constructor. |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | public function toArray() { |
53 | 53 | return array_map( |
54 | - function ($value) { |
|
54 | + function($value) { |
|
55 | 55 | // $value may be another Config object, if so then we toArray() it also. |
56 | 56 | return $this->hasToArray($value) ? $value->toArray() : $value; |
57 | 57 | }, |
@@ -47,23 +47,23 @@ |
||
47 | 47 | } |
48 | 48 | |
49 | 49 | # ArrayAccess |
50 | - public function offsetGet($offset) { return $this->requireOffset($offset); } |
|
51 | - public function offsetExists($offset) { return array_key_exists($offset, $this->values); } |
|
52 | - public function offsetSet($offset, $val) { $this->values[$offset] = $val; } |
|
53 | - public function offsetUnset($offset) { unset($this->values[$offset]); } |
|
50 | + public function offsetGet($offset) { return $this->requireOffset($offset); } |
|
51 | + public function offsetExists($offset) { return array_key_exists($offset, $this->values); } |
|
52 | + public function offsetSet($offset, $val) { $this->values[$offset] = $val; } |
|
53 | + public function offsetUnset($offset) { unset($this->values[$offset]); } |
|
54 | 54 | |
55 | 55 | # Iterator |
56 | - public function rewind() { return reset($this->values); } |
|
57 | - public function key() { return key($this->values); } |
|
58 | - public function current() { return current($this->values); } |
|
59 | - public function next() { return next($this->values); } |
|
60 | - public function valid() { return key($this->values) !== null; } |
|
56 | + public function rewind() { return reset($this->values); } |
|
57 | + public function key() { return key($this->values); } |
|
58 | + public function current() { return current($this->values); } |
|
59 | + public function next() { return next($this->values); } |
|
60 | + public function valid() { return key($this->values) !== null; } |
|
61 | 61 | |
62 | 62 | # Magic Property Access |
63 | - public function __set($offset, $value) { $this->offsetSet($offset, $value); } |
|
64 | - public function __unset($offset) { $this->offsetUnset($offset); } |
|
65 | - public function __get($offset) { return $this->offsetGet($offset); } |
|
66 | - public function __isset($offset) { return $this->offsetExists($offset); } |
|
63 | + public function __set($offset, $value) { $this->offsetSet($offset, $value); } |
|
64 | + public function __unset($offset) { $this->offsetUnset($offset); } |
|
65 | + public function __get($offset) { return $this->offsetGet($offset); } |
|
66 | + public function __isset($offset) { return $this->offsetExists($offset); } |
|
67 | 67 | |
68 | 68 | protected function requireOffset($offset) { |
69 | 69 | if (!$this->offsetExists($offset)) |
@@ -13,7 +13,7 @@ |
||
13 | 13 | protected $validators = []; |
14 | 14 | |
15 | 15 | public function addValidator(Validator ...$validators) { |
16 | - foreach($validators as $v) |
|
16 | + foreach ($validators as $v) |
|
17 | 17 | array_push($this->validators, $v); |
18 | 18 | } |
19 | 19 |