Passed
Push — master ( f1ca2b...4512a5 )
by Sebastian
04:21
created
src/Request/Param.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -126,9 +126,9 @@  discard block
 block discarded – undo
126 126
     * @param array $args
127 127
     * @return Request_Param
128 128
     */
129
-    public function setCallback($callback, array $args=array()) : Request_Param
129
+    public function setCallback($callback, array $args = array()) : Request_Param
130 130
     {
131
-        if(!is_callable($callback)) {
131
+        if (!is_callable($callback)) {
132 132
             throw new Request_Exception(
133 133
                 'Not a valid callback',
134 134
                 'The specified callback is not a valid callable entity.',
@@ -159,22 +159,22 @@  discard block
 block discarded – undo
159 159
         // first off, apply filtering
160 160
         $value = $this->filter($value);
161 161
         
162
-        if($this->valueType === self::VALUE_TYPE_LIST)
162
+        if ($this->valueType === self::VALUE_TYPE_LIST)
163 163
         {
164
-            if(!is_array($value))
164
+            if (!is_array($value))
165 165
             {
166 166
                 $value = explode(',', $value);
167 167
             }
168 168
             
169 169
             $keep = array();
170 170
             
171
-            foreach($value as $subval)
171
+            foreach ($value as $subval)
172 172
             {
173 173
                 $subval = $this->filter($subval);
174 174
                 
175 175
                 $subval = $this->applyValidations($subval, true);
176 176
 
177
-                if($subval !== null) {
177
+                if ($subval !== null) {
178 178
                     $keep[] = $subval;
179 179
                 }
180 180
             }
@@ -195,11 +195,11 @@  discard block
 block discarded – undo
195 195
     * @param mixed $value
196 196
     * @return mixed
197 197
     */
198
-    protected function applyValidations($value, bool $subval=false)
198
+    protected function applyValidations($value, bool $subval = false)
199 199
     {
200 200
         // go through all enqueued validations in turn, each time
201 201
         // replacing the value with the adjusted, validated value.
202
-        foreach($this->validations as $validateDef)
202
+        foreach ($this->validations as $validateDef)
203 203
         {
204 204
             $value = $this->validateType($value, $validateDef['type'], $validateDef['params'], $subval);
205 205
         }
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     {
223 223
         $class = '\AppUtils\Request_Param_Validator_'.ucfirst($type);
224 224
         
225
-        if(!class_exists($class))
225
+        if (!class_exists($class))
226 226
         {
227 227
             throw new Request_Exception(
228 228
                 'Unknown validation type.',
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
     {
377 377
         $args = func_get_args(); // cannot be used as function parameter in some PHP versions
378 378
         
379
-        if(is_array($args[0])) 
379
+        if (is_array($args[0])) 
380 380
         {
381 381
             $args = $args[0];
382 382
         }
@@ -521,10 +521,10 @@  discard block
 block discarded – undo
521 521
     * @param mixed $default
522 522
     * @return mixed
523 523
     */
524
-    public function get($default=null)
524
+    public function get($default = null)
525 525
     {
526 526
         $value = $this->request->getParam($this->paramName);
527
-        if($value !== null && $value !== '') {
527
+        if ($value !== null && $value !== '') {
528 528
             return $value;
529 529
         }
530 530
 
@@ -543,7 +543,7 @@  discard block
 block discarded – undo
543 543
     {
544 544
         $total = count($this->filters);
545 545
         for ($i = 0; $i < $total; $i++) {
546
-            $method = 'applyFilter_' . $this->filters[$i]['type'];
546
+            $method = 'applyFilter_'.$this->filters[$i]['type'];
547 547
             $value = $this->$method($value, $this->filters[$i]['params']);
548 548
         }
549 549
 
@@ -700,7 +700,7 @@  discard block
 block discarded – undo
700 700
     * @param bool $stripEmptyEntries Remove empty entries from the array?
701 701
     * @return \AppUtils\Request_Param
702 702
     */
703
-    public function addCommaSeparatedFilter(bool $trimEntries=true, bool $stripEmptyEntries=true) : Request_Param
703
+    public function addCommaSeparatedFilter(bool $trimEntries = true, bool $stripEmptyEntries = true) : Request_Param
704 704
     {
705 705
         $this->setArray();
706 706
         
@@ -713,7 +713,7 @@  discard block
 block discarded – undo
713 713
         );
714 714
     }
715 715
     
716
-    protected function addClassFilter(string $name, array $params=array()) : Request_Param
716
+    protected function addClassFilter(string $name, array $params = array()) : Request_Param
717 717
     {
718 718
         return $this->addFilter(
719 719
             self::FILTER_TYPE_CLASS,
Please login to merge, or discard this patch.
src/Request/Param/Validator/Array.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,11 +28,11 @@
 block discarded – undo
28 28
     protected function _validate()
29 29
     {
30 30
         // subvalues cannot be arrays
31
-        if($this->isSubvalue) {
31
+        if ($this->isSubvalue) {
32 32
             return $this->value;
33 33
         }
34 34
         
35
-        if(is_array($this->value)) {
35
+        if (is_array($this->value)) {
36 36
             return $this->value;
37 37
         }
38 38
         
Please login to merge, or discard this patch.
src/Request/Param/Validator/Valueslist.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,22 +33,22 @@
 block discarded – undo
33 33
         
34 34
         // if we are validating a subvalue, it means we are 
35 35
         // validating a single value in the existing list.
36
-        if($this->isSubvalue) 
36
+        if ($this->isSubvalue) 
37 37
         {
38
-            if(in_array($this->value, $allowed)) {
38
+            if (in_array($this->value, $allowed)) {
39 39
                 return $this->value;
40 40
             }
41 41
             
42 42
             return null;
43 43
         }
44 44
         
45
-        if(!is_array($this->value)) {
45
+        if (!is_array($this->value)) {
46 46
             return array();
47 47
         }
48 48
         
49 49
         $keep = array();
50
-        foreach($this->value as $item) {
51
-            if(in_array($item, $allowed)) {
50
+        foreach ($this->value as $item) {
51
+            if (in_array($item, $allowed)) {
52 52
                 $keep[] = $item;
53 53
             }
54 54
         }
Please login to merge, or discard this patch.
src/RequestHelper/Boundaries/Boundary.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -132,12 +132,12 @@  discard block
 block discarded – undo
132 132
         $lines[] = '--'.$this->boundaries->getMimeBoundary();
133 133
         $lines[] = $this->renderContentDisposition();
134 134
         
135
-        if(!empty($this->contentType)) 
135
+        if (!empty($this->contentType)) 
136 136
         {
137 137
             $lines[] = $this->renderContentType();
138 138
         }
139 139
         
140
-        if(!empty($this->transferEncoding))
140
+        if (!empty($this->transferEncoding))
141 141
         {
142 142
             $lines[] = $this->renderTransferEncoding();
143 143
         }
@@ -152,9 +152,9 @@  discard block
 block discarded – undo
152 152
     {
153 153
         $result = 'Content-Disposition: form-data';
154 154
         
155
-        foreach($this->dispositionParams as $name => $value) 
155
+        foreach ($this->dispositionParams as $name => $value) 
156 156
         {
157
-            $result .= '; '.$name.'="' . $value . '"';
157
+            $result .= '; '.$name.'="'.$value.'"';
158 158
         }   
159 159
         
160 160
         return $result;
@@ -162,11 +162,11 @@  discard block
 block discarded – undo
162 162
     
163 163
     protected function renderContentType() : string
164 164
     {
165
-        $result = 'Content-Type: ' . $this->contentType; 
165
+        $result = 'Content-Type: '.$this->contentType; 
166 166
         
167
-        if(!empty($this->contentEncoding)) 
167
+        if (!empty($this->contentEncoding)) 
168 168
         {
169
-            $result .= '; charset="' . $this->contentEncoding.'"';
169
+            $result .= '; charset="'.$this->contentEncoding.'"';
170 170
         }
171 171
         
172 172
         return $result;
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     
175 175
     protected function renderTransferEncoding() : string
176 176
     {
177
-        $result = 'Content-Transfer-Encoding: ' . $this->transferEncoding;
177
+        $result = 'Content-Transfer-Encoding: '.$this->transferEncoding;
178 178
         
179 179
         return $result;
180 180
     }
Please login to merge, or discard this patch.
src/Traits/Optionable.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     */
41 41
     public function setOption(string $name, $value)
42 42
     {
43
-        if(!isset($this->options)) {
43
+        if (!isset($this->options)) {
44 44
             $this->options = $this->getDefaultOptions();
45 45
         }
46 46
         
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     */
57 57
     public function setOptions(array $options)
58 58
     {
59
-        foreach($options as $name => $value) {
59
+        foreach ($options as $name => $value) {
60 60
             $this->setOption($name, $value);
61 61
         }
62 62
         
@@ -73,13 +73,13 @@  discard block
 block discarded – undo
73 73
     * @param mixed $default The default value to return if the option does not exist.
74 74
     * @return mixed
75 75
     */
76
-    public function getOption(string $name, $default=null)
76
+    public function getOption(string $name, $default = null)
77 77
     {
78
-        if(!isset($this->options)) {
78
+        if (!isset($this->options)) {
79 79
             $this->options = $this->getDefaultOptions();
80 80
         }
81 81
         
82
-        if(isset($this->options[$name])) {
82
+        if (isset($this->options[$name])) {
83 83
             return $this->options[$name];
84 84
         }
85 85
         
@@ -96,11 +96,11 @@  discard block
 block discarded – undo
96 96
     * @param string $default Used if the option does not exist, is invalid, or empty.
97 97
     * @return string
98 98
     */
99
-    public function getStringOption(string $name, string $default='') : string
99
+    public function getStringOption(string $name, string $default = '') : string
100 100
     {
101 101
         $value = $this->getOption($name, false);
102 102
         
103
-        if((is_string($value) || is_numeric($value)) && !empty($value)) {
103
+        if ((is_string($value) || is_numeric($value)) && !empty($value)) {
104 104
             return (string)$value;
105 105
         }
106 106
         
@@ -116,9 +116,9 @@  discard block
 block discarded – undo
116 116
     * @param string $name
117 117
     * @return bool
118 118
     */
119
-    public function getBoolOption(string $name, bool $default=false) : bool
119
+    public function getBoolOption(string $name, bool $default = false) : bool
120 120
     {
121
-        if($this->getOption($name) === true) {
121
+        if ($this->getOption($name) === true) {
122 122
             return true;
123 123
         }
124 124
         
@@ -134,10 +134,10 @@  discard block
 block discarded – undo
134 134
     * @param int $default
135 135
     * @return int
136 136
     */
137
-    public function getIntOption(string $name, int $default=0) : int
137
+    public function getIntOption(string $name, int $default = 0) : int
138 138
     {
139 139
         $value = $this->getOption($name);
140
-        if(ConvertHelper::isInteger($value)) {
140
+        if (ConvertHelper::isInteger($value)) {
141 141
             return (int)$value;
142 142
         }
143 143
         
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     public function getArrayOption(string $name) : array
156 156
     {
157 157
         $val = $this->getOption($name);
158
-        if(is_array($val)) {
158
+        if (is_array($val)) {
159 159
             return $val;
160 160
         }
161 161
         
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     */
172 172
     public function hasOption(string $name) : bool
173 173
     {
174
-        if(!isset($this->options)) {
174
+        if (!isset($this->options)) {
175 175
             $this->options = $this->getDefaultOptions();
176 176
         }
177 177
         
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     */
185 185
     public function getOptions() : array
186 186
     {
187
-        if(!isset($this->options)) {
187
+        if (!isset($this->options)) {
188 188
             $this->options = $this->getDefaultOptions();
189 189
         }
190 190
         
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
     * @param mixed $default
239 239
     * @return $this
240 240
     */
241
-    function getOption(string $name, $default=null);
241
+    function getOption(string $name, $default = null);
242 242
     
243 243
    /**
244 244
     * @param array $options
Please login to merge, or discard this patch.
src/RequestHelper/Boundaries.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -83,12 +83,12 @@  discard block
 block discarded – undo
83 83
     */
84 84
     public function addFile(string $varName, string $fileName, string $content, string $contentType = '', string $encoding = '') : RequestHelper_Boundaries
85 85
     {
86
-        if(empty($contentType))
86
+        if (empty($contentType))
87 87
         {
88 88
             $contentType = (string)FileHelper::detectMimeType($fileName);
89 89
         }
90 90
         
91
-        if(empty($encoding))
91
+        if (empty($encoding))
92 92
         {
93 93
             $encoding = RequestHelper::ENCODING_UTF8;
94 94
             $content = ConvertHelper::string2utf8($content);
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     */
154 154
     public function render() : string
155 155
     {
156
-        if(empty($this->boundaries)) 
156
+        if (empty($this->boundaries)) 
157 157
         {
158 158
             throw new RequestHelper_Exception(
159 159
                 'No mime boundaries added',
@@ -164,13 +164,13 @@  discard block
 block discarded – undo
164 164
         
165 165
         $result = '';
166 166
         
167
-        foreach($this->boundaries as $boundary)
167
+        foreach ($this->boundaries as $boundary)
168 168
         {
169 169
             $result .= $boundary->render();
170 170
         }
171 171
         
172
-        $result .= "--" . $this->getMimeBoundary() . "--" . 
173
-        $this->getEOL() . $this->getEOL(); // always finish with two eol's!!
172
+        $result .= "--".$this->getMimeBoundary()."--". 
173
+        $this->getEOL().$this->getEOL(); // always finish with two eol's!!
174 174
         
175 175
         return $result;
176 176
     }
Please login to merge, or discard this patch.
src/URLInfo/Normalizer.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     * @param bool $enable Whether to turn it on or off.
40 40
     * @return URLInfo_Normalizer
41 41
     */
42
-    public function enableAuth(bool $enable=true) : URLInfo_Normalizer
42
+    public function enableAuth(bool $enable = true) : URLInfo_Normalizer
43 43
     {
44 44
         $this->auth = $enable;
45 45
         return $this;
@@ -86,48 +86,48 @@  discard block
 block discarded – undo
86 86
     
87 87
     protected function renderAuth(string $normalized) : string
88 88
     {
89
-        if(!$this->info->hasUsername() || !$this->auth) {
89
+        if (!$this->info->hasUsername() || !$this->auth) {
90 90
             return $normalized;
91 91
         }
92 92
          
93
-        return $normalized . urlencode($this->info->getUsername()).':'.urlencode($this->info->getPassword()).'@';
93
+        return $normalized.urlencode($this->info->getUsername()).':'.urlencode($this->info->getPassword()).'@';
94 94
     }
95 95
     
96 96
     protected function renderPort(string $normalized) : string
97 97
     {
98
-        if(!$this->info->hasPort()) {
98
+        if (!$this->info->hasPort()) {
99 99
             return $normalized;
100 100
         }
101 101
         
102
-        return $normalized . ':'.$this->info->getPort();
102
+        return $normalized.':'.$this->info->getPort();
103 103
     }
104 104
     
105 105
     protected function renderPath(string $normalized) : string
106 106
     {
107
-        if(!$this->info->hasPath()) {
107
+        if (!$this->info->hasPath()) {
108 108
             return $normalized; 
109 109
         }
110 110
         
111
-        return $normalized . $this->info->getPath();
111
+        return $normalized.$this->info->getPath();
112 112
     }
113 113
     
114 114
     protected function renderParams(string $normalized) : string
115 115
     {
116 116
         $params = $this->info->getParams();
117 117
         
118
-        if(empty($params)) {
118
+        if (empty($params)) {
119 119
             return $normalized;
120 120
         }
121 121
         
122
-        return $normalized . '?'.http_build_query($params, '', '&', PHP_QUERY_RFC3986);
122
+        return $normalized.'?'.http_build_query($params, '', '&', PHP_QUERY_RFC3986);
123 123
     }
124 124
     
125 125
     protected function renderFragment(string $normalized) : string
126 126
     {
127
-        if(!$this->info->hasFragment()) {
127
+        if (!$this->info->hasFragment()) {
128 128
             return $normalized;
129 129
         }
130 130
         
131
-        return $normalized . '#'.$this->info->getFragment();
131
+        return $normalized.'#'.$this->info->getFragment();
132 132
     }
133 133
 }
Please login to merge, or discard this patch.
src/ConvertHelper/QueryParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         
47 47
         $result = array();
48 48
         
49
-        foreach($parts as $part)
49
+        foreach ($parts as $part)
50 50
         {
51 51
             $tokens = explode('=', $part);
52 52
             
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
             $trimmed = trim($name);
57 57
             
58
-            if(empty($trimmed))
58
+            if (empty($trimmed))
59 59
             {
60 60
                 continue;
61 61
             }
Please login to merge, or discard this patch.
src/URLInfo/Parser.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         
83 83
         $this->parse();
84 84
         
85
-        if(!$this->detectType()) {
85
+        if (!$this->detectType()) {
86 86
             $this->validate();
87 87
         }
88 88
     }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         
109 109
         // if the URL contains any URL characters, and we
110 110
         // do not want them URL encoded, restore them.
111
-        if(!$this->encodeUTF && !empty($this->unicodeChars))
111
+        if (!$this->encodeUTF && !empty($this->unicodeChars))
112 112
         {
113 113
             $this->info = $this->restoreUnicodeChars($this->info);
114 114
         }
@@ -125,13 +125,13 @@  discard block
 block discarded – undo
125 125
         
126 126
         $keep = array();
127 127
         
128
-        foreach($chars as $char)
128
+        foreach ($chars as $char)
129 129
         {
130
-            if(preg_match('/\p{L}/usix', $char))
130
+            if (preg_match('/\p{L}/usix', $char))
131 131
             {
132 132
                 $encoded = rawurlencode($char);
133 133
                 
134
-                if($encoded != $char)
134
+                if ($encoded != $char)
135 135
                 {
136 136
                     $this->unicodeChars[$encoded] = $char;
137 137
                     $char = $encoded;
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
             'phoneLink'
153 153
         );
154 154
         
155
-        foreach($types as $type)
155
+        foreach ($types as $type)
156 156
         {
157 157
             $method = 'detectType_'.$type;
158 158
             
159
-            if($this->$method() === true) 
159
+            if ($this->$method() === true) 
160 160
             {
161 161
                 $this->isValid = true;
162 162
                 return true;
@@ -174,11 +174,11 @@  discard block
 block discarded – undo
174 174
             'hostIsPresent'
175 175
         );
176 176
         
177
-        foreach($validations as $validation) 
177
+        foreach ($validations as $validation) 
178 178
         {
179 179
             $method = 'validate_'.$validation;
180 180
             
181
-            if($this->$method() !== true) {
181
+            if ($this->$method() !== true) {
182 182
                 return;
183 183
             }
184 184
         }
@@ -191,13 +191,13 @@  discard block
 block discarded – undo
191 191
         // every link needs a host. This case can happen for ex, if
192 192
         // the link starts with a typo with only one slash, like:
193 193
         // "http:/hostname"
194
-        if(isset($this->info['host'])) {
194
+        if (isset($this->info['host'])) {
195 195
             return true;
196 196
         }
197 197
         
198 198
         $this->setError(
199 199
             URLInfo::ERROR_MISSING_HOST,
200
-            t('Cannot determine the link\'s host name.') . ' ' .
200
+            t('Cannot determine the link\'s host name.').' '.
201 201
             t('This usually happens when there\'s a typo somewhere.')
202 202
         );
203 203
 
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
     
207 207
     protected function validate_schemeIsSet() : bool
208 208
     {
209
-        if(isset($this->info['scheme'])) {
209
+        if (isset($this->info['scheme'])) {
210 210
             return true;
211 211
         }
212 212
         
@@ -223,13 +223,13 @@  discard block
 block discarded – undo
223 223
     
224 224
     protected function validate_schemeIsKnown() : bool
225 225
     {
226
-        if(in_array($this->info['scheme'], $this->knownSchemes)) {
226
+        if (in_array($this->info['scheme'], $this->knownSchemes)) {
227 227
             return true;
228 228
         }
229 229
         
230 230
         $this->setError(
231 231
             URLInfo::ERROR_INVALID_SCHEME,
232
-            t('The scheme %1$s is not supported for links.', $this->info['scheme']) . ' ' .
232
+            t('The scheme %1$s is not supported for links.', $this->info['scheme']).' '.
233 233
             t('Valid schemes are: %1$s.', implode(', ', $this->knownSchemes))
234 234
         );
235 235
 
@@ -246,23 +246,23 @@  discard block
 block discarded – undo
246 246
         $this->info['params'] = array();
247 247
         $this->info['type'] = URLInfo::TYPE_URL;
248 248
         
249
-        if(isset($this->info['user'])) {
249
+        if (isset($this->info['user'])) {
250 250
             $this->info['user'] = urldecode($this->info['user']);
251 251
         }
252 252
 
253
-        if(isset($this->info['pass'])) {
253
+        if (isset($this->info['pass'])) {
254 254
             $this->info['pass'] = urldecode($this->info['pass']);
255 255
         }
256 256
         
257
-        if(isset($this->info['host'])) {
257
+        if (isset($this->info['host'])) {
258 258
             $this->info['host'] = str_replace(' ', '', $this->info['host']);
259 259
         }
260 260
         
261
-        if(isset($this->info['path'])) {
261
+        if (isset($this->info['path'])) {
262 262
             $this->info['path'] = str_replace(' ', '', $this->info['path']);
263 263
         }
264 264
         
265
-        if(isset($this->info['query']) && !empty($this->info['query']))
265
+        if (isset($this->info['query']) && !empty($this->info['query']))
266 266
         {
267 267
             $this->info['params'] = \AppUtils\ConvertHelper::parseQueryString($this->info['query']);
268 268
             ksort($this->info['params']);
@@ -280,9 +280,9 @@  discard block
 block discarded – undo
280 280
     {
281 281
         $result = array();
282 282
         
283
-        foreach($subject as $key => $val)
283
+        foreach ($subject as $key => $val)
284 284
         {
285
-            if(is_array($val))
285
+            if (is_array($val))
286 286
             {
287 287
                 $val = $this->restoreUnicodeChars($val);
288 288
             }
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
     */
309 309
     protected function restoreUnicodeChar(string $string) : string
310 310
     {
311
-        if(strstr($string, '%'))
311
+        if (strstr($string, '%'))
312 312
         {
313 313
             return str_replace(array_keys($this->unicodeChars), array_values($this->unicodeChars), $string);
314 314
         }
@@ -318,12 +318,12 @@  discard block
 block discarded – undo
318 318
     
319 319
     protected function detectType_email() : bool
320 320
     {
321
-        if(isset($this->info['scheme']) && $this->info['scheme'] == 'mailto') {
321
+        if (isset($this->info['scheme']) && $this->info['scheme'] == 'mailto') {
322 322
             $this->info['type'] = URLInfo::TYPE_EMAIL;
323 323
             return true;
324 324
         }
325 325
         
326
-        if(isset($this->info['path']) && preg_match(\AppUtils\RegexHelper::REGEX_EMAIL, $this->info['path']))
326
+        if (isset($this->info['path']) && preg_match(\AppUtils\RegexHelper::REGEX_EMAIL, $this->info['path']))
327 327
         {
328 328
             $this->info['scheme'] = 'mailto';
329 329
             $this->info['type'] = URLInfo::TYPE_EMAIL;
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
     
336 336
     protected function detectType_fragmentLink() : bool
337 337
     {
338
-        if(isset($this->info['fragment']) && !isset($this->info['scheme'])) {
338
+        if (isset($this->info['fragment']) && !isset($this->info['scheme'])) {
339 339
             $this->info['type'] = URLInfo::TYPE_FRAGMENT;
340 340
             return true;
341 341
         }
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
     
346 346
     protected function detectType_phoneLink() : bool
347 347
     {
348
-        if(isset($this->info['scheme']) && $this->info['scheme'] == 'tel') {
348
+        if (isset($this->info['scheme']) && $this->info['scheme'] == 'tel') {
349 349
             $this->info['type'] = URLInfo::TYPE_PHONE;
350 350
             return true;
351 351
         }
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
     */
381 381
     public function getErrorMessage() : string
382 382
     {
383
-        if(isset($this->error)) {
383
+        if (isset($this->error)) {
384 384
             return $this->error['message'];
385 385
         }
386 386
         
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
     */
396 396
     public function getErrorCode() : int
397 397
     {
398
-        if(isset($this->error)) {
398
+        if (isset($this->error)) {
399 399
             return $this->error['code'];
400 400
         }
401 401
         
Please login to merge, or discard this patch.