@@ -37,7 +37,9 @@ |
||
37 | 37 | |
38 | 38 | private function nextNumericIndex() { |
39 | 39 | $numericKeys = array_filter(array_keys($this->rawValues()), 'is_numeric'); |
40 | - if (count($numericKeys) === 0) return 0; |
|
40 | + if (count($numericKeys) === 0) { |
|
41 | + return 0; |
|
42 | + } |
|
41 | 43 | return max($numericKeys) + 1; |
42 | 44 | } |
43 | 45 | } |
44 | 46 | \ No newline at end of file |
@@ -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) { |
@@ -15,8 +15,9 @@ |
||
15 | 15 | } |
16 | 16 | |
17 | 17 | public function find($path, $default=null, $delimiter='.') { |
18 | - if ($this->pathStartsWithConfig($path, $delimiter)) |
|
19 | - return $this->evalSubPath($path, $delimiter, $default); |
|
18 | + if ($this->pathStartsWithConfig($path, $delimiter)) { |
|
19 | + return $this->evalSubPath($path, $delimiter, $default); |
|
20 | + } |
|
20 | 21 | |
21 | 22 | return $this->get($this->getFirstToken($path, $delimiter), $default); |
22 | 23 | } |
@@ -10,11 +10,11 @@ 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 | public function __construct(array $arrayConfig = []) { |
16 | 16 | parent::__construct(); |
17 | - foreach($arrayConfig as $key => $value) |
|
17 | + foreach ($arrayConfig as $key => $value) |
|
18 | 18 | $this->offsetSet($key, $value); |
19 | 19 | |
20 | 20 | $this->onConstruct(); |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | public function toArray() { |
39 | 39 | return array_map( |
40 | - function ($value) { |
|
40 | + function($value) { |
|
41 | 41 | return $this->hasToArray($value) ? $value->toArray() : $value; |
42 | 42 | }, |
43 | 43 | $this->rawValues() |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | |
15 | 15 | public function __construct(array $arrayConfig = []) { |
16 | 16 | parent::__construct(); |
17 | - foreach($arrayConfig as $key => $value) |
|
18 | - $this->offsetSet($key, $value); |
|
17 | + foreach($arrayConfig as $key => $value) { |
|
18 | + $this->offsetSet($key, $value); |
|
19 | + } |
|
19 | 20 | |
20 | 21 | $this->onConstruct(); |
21 | 22 | } |
@@ -82,7 +83,8 @@ discard block |
||
82 | 83 | } |
83 | 84 | |
84 | 85 | private function blockIfLocked() { |
85 | - if ($this->isLocked()) |
|
86 | - throw new CanNotMutateException(); |
|
86 | + if ($this->isLocked()) { |
|
87 | + throw new CanNotMutateException(); |
|
88 | + } |
|
87 | 89 | } |
88 | 90 | } |
89 | 91 | \ No newline at end of file |
@@ -39,23 +39,23 @@ |
||
39 | 39 | } |
40 | 40 | |
41 | 41 | # ArrayAccess |
42 | - public function offsetGet($offset) { return $this->requireOffset($offset); } |
|
43 | - public function offsetExists($offset) { return isset($this->values[$offset]); } |
|
44 | - public function offsetSet($offset, $val) { $this->values[$offset] = $val; } |
|
45 | - public function offsetUnset($offset) { unset($this->values[$offset]); } |
|
42 | + public function offsetGet($offset) { return $this->requireOffset($offset); } |
|
43 | + public function offsetExists($offset) { return isset($this->values[$offset]); } |
|
44 | + public function offsetSet($offset, $val) { $this->values[$offset] = $val; } |
|
45 | + public function offsetUnset($offset) { unset($this->values[$offset]); } |
|
46 | 46 | |
47 | 47 | # Iterator |
48 | - public function rewind() { return reset($this->values); } |
|
49 | - public function key() { return key($this->values); } |
|
50 | - public function current() { return current($this->values); } |
|
51 | - public function next() { return next($this->values); } |
|
52 | - public function valid() { return key($this->values) !== null; } |
|
48 | + public function rewind() { return reset($this->values); } |
|
49 | + public function key() { return key($this->values); } |
|
50 | + public function current() { return current($this->values); } |
|
51 | + public function next() { return next($this->values); } |
|
52 | + public function valid() { return key($this->values) !== null; } |
|
53 | 53 | |
54 | 54 | # Magic Property Access |
55 | - public function __set($offset, $value) { $this->offsetSet($offset, $value); } |
|
56 | - public function __unset($offset) { $this->offsetUnset($offset); } |
|
57 | - public function __get($offset) { return $this->offsetGet($offset); } |
|
58 | - public function __isset($offset) { return $this->offsetExists($offset); } |
|
55 | + public function __set($offset, $value) { $this->offsetSet($offset, $value); } |
|
56 | + public function __unset($offset) { $this->offsetUnset($offset); } |
|
57 | + public function __get($offset) { return $this->offsetGet($offset); } |
|
58 | + public function __isset($offset) { return $this->offsetExists($offset); } |
|
59 | 59 | |
60 | 60 | protected function requireOffset($offset) { |
61 | 61 | if (!$this->offsetExists($offset)) |
@@ -58,8 +58,9 @@ |
||
58 | 58 | public function __isset($offset) { return $this->offsetExists($offset); } |
59 | 59 | |
60 | 60 | protected function requireOffset($offset) { |
61 | - if (!$this->offsetExists($offset)) |
|
62 | - throw new \OutOfBoundsException("offset '{$offset}' does not exist"); |
|
61 | + if (!$this->offsetExists($offset)) { |
|
62 | + throw new \OutOfBoundsException("offset '{$offset}' does not exist"); |
|
63 | + } |
|
63 | 64 | |
64 | 65 | return $this->values[$offset]; |
65 | 66 | } |