@@ -14,9 +14,9 @@ discard block |
||
14 | 14 | * @param mixed $value |
15 | 15 | * @return \AppUtils\NumberInfo |
16 | 16 | */ |
17 | -function parseNumber($value, $forceNew=false) |
|
17 | +function parseNumber($value, $forceNew = false) |
|
18 | 18 | { |
19 | - if($value instanceof NumberInfo && $forceNew !== true) { |
|
19 | + if ($value instanceof NumberInfo && $forceNew !== true) { |
|
20 | 20 | return $value; |
21 | 21 | } |
22 | 22 | |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | $args = func_get_args(); |
98 | 98 | |
99 | 99 | // is the localization package installed? |
100 | - if(class_exists('\AppLocalize\Localization')) |
|
100 | + if (class_exists('\AppLocalize\Localization')) |
|
101 | 101 | { |
102 | 102 | return call_user_func_array('\AppLocalize\t', $args); |
103 | 103 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | */ |
116 | 116 | function requireCURL() : void |
117 | 117 | { |
118 | - if(function_exists('curl_init')) { |
|
118 | + if (function_exists('curl_init')) { |
|
119 | 119 | return; |
120 | 120 | } |
121 | 121 | |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | * @param bool $initial The initial boolean value to use. |
133 | 133 | * @return Value_Bool |
134 | 134 | */ |
135 | -function valBool(bool $initial=false) : Value_Bool |
|
135 | +function valBool(bool $initial = false) : Value_Bool |
|
136 | 136 | { |
137 | 137 | return new Value_Bool($initial); |
138 | 138 | } |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | * @param bool $initial |
146 | 146 | * @return Value_Bool_True |
147 | 147 | */ |
148 | -function valBoolTrue(bool $initial=false) : Value_Bool_True |
|
148 | +function valBoolTrue(bool $initial = false) : Value_Bool_True |
|
149 | 149 | { |
150 | 150 | return new Value_Bool_True($initial); |
151 | 151 | } |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * @param bool $initial |
159 | 159 | * @return Value_Bool_False |
160 | 160 | */ |
161 | -function valBoolFalse(bool $initial=true) : Value_Bool_False |
|
161 | +function valBoolFalse(bool $initial = true) : Value_Bool_False |
|
162 | 162 | { |
163 | 163 | return new Value_Bool_False($initial); |
164 | 164 | } |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | */ |
171 | 171 | function init() |
172 | 172 | { |
173 | - if(!class_exists('\AppLocalize\Localization')) { |
|
173 | + if (!class_exists('\AppLocalize\Localization')) { |
|
174 | 174 | return; |
175 | 175 | } |
176 | 176 |
@@ -21,7 +21,7 @@ |
||
21 | 21 | { |
22 | 22 | protected $value = false; |
23 | 23 | |
24 | - public function __construct(bool $value=false) |
|
24 | + public function __construct(bool $value = false) |
|
25 | 25 | { |
26 | 26 | $this->value = $value; |
27 | 27 | } |
@@ -22,14 +22,14 @@ |
||
22 | 22 | */ |
23 | 23 | class Value_Bool_False extends Value_Bool |
24 | 24 | { |
25 | - public function __construct(bool $value=true) |
|
25 | + public function __construct(bool $value = true) |
|
26 | 26 | { |
27 | 27 | parent::__construct($value); |
28 | 28 | } |
29 | 29 | |
30 | 30 | public function set(bool $value) : Value_Bool |
31 | 31 | { |
32 | - if($value === false) |
|
32 | + if ($value === false) |
|
33 | 33 | { |
34 | 34 | parent::set($value); |
35 | 35 | } |
@@ -24,7 +24,7 @@ |
||
24 | 24 | { |
25 | 25 | public function set(bool $value) : Value_Bool |
26 | 26 | { |
27 | - if($value === true) |
|
27 | + if ($value === true) |
|
28 | 28 | { |
29 | 29 | parent::set($value); |
30 | 30 | } |
@@ -13,15 +13,15 @@ |
||
13 | 13 | return print_r($result, true); |
14 | 14 | } |
15 | 15 | |
16 | - protected function traverseArray(array $array, int $level=0) : array |
|
16 | + protected function traverseArray(array $array, int $level = 0) : array |
|
17 | 17 | { |
18 | 18 | $result = array(); |
19 | 19 | |
20 | - foreach($array as $key => $val) |
|
20 | + foreach ($array as $key => $val) |
|
21 | 21 | { |
22 | - if(is_array($val)) |
|
22 | + if (is_array($val)) |
|
23 | 23 | { |
24 | - $result[$key] = $this->traverseArray($val, ($level+1)); |
|
24 | + $result[$key] = $this->traverseArray($val, ($level + 1)); |
|
25 | 25 | } |
26 | 26 | else |
27 | 27 | { |
@@ -57,7 +57,7 @@ |
||
57 | 57 | |
58 | 58 | $interval = $d2->diff($d1); |
59 | 59 | |
60 | - if(!$interval instanceof \DateInterval) |
|
60 | + if (!$interval instanceof \DateInterval) |
|
61 | 61 | { |
62 | 62 | throw new ConvertHelper_Exception( |
63 | 63 | 'Cannot create interval', |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | // error wrappers. |
84 | 84 | $errors = libxml_get_errors(); |
85 | 85 | |
86 | - foreach($errors as $error) |
|
86 | + foreach ($errors as $error) |
|
87 | 87 | { |
88 | 88 | $this->errors[] = new XMLHelper_SimpleXML_Error($this, $error); |
89 | 89 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | |
98 | 98 | $xml = $function($subject); |
99 | 99 | |
100 | - if($xml instanceof \SimpleXMLElement) |
|
100 | + if ($xml instanceof \SimpleXMLElement) |
|
101 | 101 | { |
102 | 102 | return $xml; |
103 | 103 | } |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | |
108 | 108 | public function getConverter() : XMLHelper_Converter |
109 | 109 | { |
110 | - if($this->element instanceof \SimpleXMLElement) |
|
110 | + if ($this->element instanceof \SimpleXMLElement) |
|
111 | 111 | { |
112 | 112 | return XMLHelper::convertElement($this->element); |
113 | 113 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | { |
47 | 47 | $data = @json_decode($serialized, true); |
48 | 48 | |
49 | - if(!is_array($data)) |
|
49 | + if (!is_array($data)) |
|
50 | 50 | { |
51 | 51 | throw new XMLHelper_Exception( |
52 | 52 | 'Could not unserialize error data', |
@@ -72,9 +72,9 @@ discard block |
||
72 | 72 | |
73 | 73 | private static function checkErrorData(array $data) : void |
74 | 74 | { |
75 | - foreach(self::$requiredKeys as $key) |
|
75 | + foreach (self::$requiredKeys as $key) |
|
76 | 76 | { |
77 | - if(!array_key_exists($key, $data)) |
|
77 | + if (!array_key_exists($key, $data)) |
|
78 | 78 | { |
79 | 79 | throw new XMLHelper_Exception( |
80 | 80 | 'Required key missing in error data', |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | */ |
108 | 108 | private static function checkFragment(string $fragment) : void |
109 | 109 | { |
110 | - if(!stristr($fragment, '<body') && !stristr($fragment, 'doctype')) |
|
110 | + if (!stristr($fragment, '<body') && !stristr($fragment, 'doctype')) |
|
111 | 111 | { |
112 | 112 | return; |
113 | 113 | } |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | |
208 | 208 | // capture all elements except the body tag itself |
209 | 209 | $xml = ''; |
210 | - foreach($nodes as $child) |
|
210 | + foreach ($nodes as $child) |
|
211 | 211 | { |
212 | 212 | $xml .= $this->dom->saveXML($child); |
213 | 213 | } |