Passed
Push — master ( 4a082e...65a9d7 )
by Sebastian
03:03
created
src/ConvertHelper/String.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -19,14 +19,14 @@  discard block
 block discarded – undo
19 19
      * @param bool $caseInsensitive
20 20
      * @return ConvertHelper_StringMatch[]
21 21
      */
22
-    public static function findString(string $needle, string $haystack, bool $caseInsensitive=false): array
22
+    public static function findString(string $needle, string $haystack, bool $caseInsensitive = false): array
23 23
     {
24
-        if($needle === '') {
24
+        if ($needle === '') {
25 25
             return array();
26 26
         }
27 27
 
28 28
         $function = 'mb_strpos';
29
-        if($caseInsensitive) {
29
+        if ($caseInsensitive) {
30 30
             $function = 'mb_stripos';
31 31
         }
32 32
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $positions = array();
35 35
         $length = mb_strlen($needle);
36 36
 
37
-        while( ($pos = $function($haystack, $needle, $pos)) !== false)
37
+        while (($pos = $function($haystack, $needle, $pos)) !== false)
38 38
         {
39 39
             $match = mb_substr($haystack, $pos, $length);
40 40
             $positions[] = new ConvertHelper_StringMatch($pos, $match);
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public static function toArray(string $string) : array
58 58
     {
59 59
         $result = preg_split('//u', $string, 0, PREG_SPLIT_NO_EMPTY);
60
-        if($result !== false) {
60
+        if ($result !== false) {
61 61
             return $result;
62 62
         }
63 63
 
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
      */
111 111
     public static function toUtf8(string $string) : string
112 112
     {
113
-        if(!self::isASCII($string)) {
113
+        if (!self::isASCII($string)) {
114 114
             return Encoding::toUTF8($string);
115 115
         }
116 116
 
@@ -128,11 +128,11 @@  discard block
 block discarded – undo
128 128
      */
129 129
     public static function isASCII($string) : bool
130 130
     {
131
-        if($string === '' || $string === NULL) {
131
+        if ($string === '' || $string === NULL) {
132 132
             return true;
133 133
         }
134 134
 
135
-        if(!is_string($string)) {
135
+        if (!is_string($string)) {
136 136
             return false;
137 137
         }
138 138
 
@@ -147,12 +147,12 @@  discard block
 block discarded – undo
147 147
      */
148 148
     public static function isHTML(string $string) : bool
149 149
     {
150
-        if(preg_match('%<[a-z/][\s\S]*>%siU', $string)) {
150
+        if (preg_match('%<[a-z/][\s\S]*>%siU', $string)) {
151 151
             return true;
152 152
         }
153 153
 
154 154
         $decoded = html_entity_decode($string);
155
-        if($decoded !== $string) {
155
+        if ($decoded !== $string) {
156 156
             return true;
157 157
         }
158 158
 
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      * @param int $tabSize The amount of spaces per tab.
185 185
      * @return string
186 186
      */
187
-    public static function tabs2spaces(string $string, int $tabSize=4) : string
187
+    public static function tabs2spaces(string $string, int $tabSize = 4) : string
188 188
     {
189 189
         return str_replace("\t", str_repeat(' ', $tabSize), $string);
190 190
     }
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
      * @param int $tabSize The amount of spaces per tab in the source string.
197 197
      * @return string
198 198
      */
199
-    public static function spaces2tabs(string $string, int $tabSize=4) : string
199
+    public static function spaces2tabs(string $string, int $tabSize = 4) : string
200 200
     {
201 201
         return str_replace(str_repeat(' ', $tabSize), "\t", $string);
202 202
     }
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
             return $text;
274 274
         }
275 275
 
276
-        $text = trim(mb_substr($text, 0, $targetLength)) . $append;
276
+        $text = trim(mb_substr($text, 0, $targetLength)).$append;
277 277
 
278 278
         return $text;
279 279
     }
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
      */
289 289
     public static function explodeTrim(string $delimiter, string $string) : array
290 290
     {
291
-        if(empty($string) || empty($delimiter)) {
291
+        if (empty($string) || empty($delimiter)) {
292 292
             return array();
293 293
         }
294 294
 
@@ -296,8 +296,8 @@  discard block
 block discarded – undo
296 296
         $tokens = array_map('trim', $tokens);
297 297
 
298 298
         $keep = array();
299
-        foreach($tokens as $token) {
300
-            if($token !== '') {
299
+        foreach ($tokens as $token) {
300
+            if ($token !== '') {
301 301
                 $keep[] = $token;
302 302
             }
303 303
         }
Please login to merge, or discard this patch.
src/functions.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@  discard block
 block discarded – undo
12 12
  * @param bool $forceNew
13 13
  * @return NumberInfo
14 14
  */
15
-function parseNumber($value, bool $forceNew=false)
15
+function parseNumber($value, bool $forceNew = false)
16 16
 {
17
-    if($value instanceof NumberInfo && $forceNew !== true) {
17
+    if ($value instanceof NumberInfo && $forceNew !== true) {
18 18
         return $value;
19 19
     }
20 20
     
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     $args = func_get_args();
96 96
     
97 97
     // is the localization package installed?
98
-    if(function_exists('\AppLocalize\t'))
98
+    if (function_exists('\AppLocalize\t'))
99 99
     {
100 100
         return call_user_func_array('\AppLocalize\t', $args);
101 101
     }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
  * @param bool $initial The initial boolean value to use.
111 111
  * @return Value_Bool
112 112
  */
113
-function valBool(bool $initial=false) : Value_Bool
113
+function valBool(bool $initial = false) : Value_Bool
114 114
 {
115 115
     return new Value_Bool($initial);
116 116
 }
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
  * @param bool $initial
124 124
  * @return Value_Bool_True
125 125
  */
126
-function valBoolTrue(bool $initial=false) : Value_Bool_True
126
+function valBoolTrue(bool $initial = false) : Value_Bool_True
127 127
 {
128 128
     return new Value_Bool_True($initial);
129 129
 }
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
  * @param bool $initial
137 137
  * @return Value_Bool_False
138 138
  */
139
-function valBoolFalse(bool $initial=true) : Value_Bool_False
139
+function valBoolFalse(bool $initial = true) : Value_Bool_False
140 140
 {
141 141
     return new Value_Bool_False($initial);
142 142
 }
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
  */
168 168
 function init()
169 169
 {
170
-    if(!class_exists('\AppLocalize\Localization')) {
170
+    if (!class_exists('\AppLocalize\Localization')) {
171 171
         return;
172 172
     }
173 173
     
Please login to merge, or discard this patch.
src/URLInfo/ConnectionTester.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@  discard block
 block discarded – undo
22 22
 {
23 23
     use Traits_Optionable;
24 24
     
25
-   /**
26
-    * @var URLInfo
27
-    */
25
+    /**
26
+     * @var URLInfo
27
+     */
28 28
     private $url;
29 29
     
30 30
     public function __construct(URLInfo $url)
@@ -41,13 +41,13 @@  discard block
 block discarded – undo
41 41
         );
42 42
     }
43 43
     
44
-   /**
45
-    * Whether to verify the host's SSL certificate, in
46
-    * case of an https connection.
47
-    * 
48
-    * @param bool $verifySSL
49
-    * @return URLInfo_ConnectionTester
50
-    */
44
+    /**
45
+     * Whether to verify the host's SSL certificate, in
46
+     * case of an https connection.
47
+     * 
48
+     * @param bool $verifySSL
49
+     * @return URLInfo_ConnectionTester
50
+     */
51 51
     public function setVerifySSL(bool $verifySSL=true) : URLInfo_ConnectionTester
52 52
     {
53 53
         $this->setOption('verify-ssl', $verifySSL);
@@ -81,12 +81,12 @@  discard block
 block discarded – undo
81 81
         return $this->getIntOption('timeout');
82 82
     }
83 83
     
84
-   /**
85
-    * Initializes the CURL instance.
86
-    * 
87
-    * @throws BaseException
88
-    * @return resource
89
-    */
84
+    /**
85
+     * Initializes the CURL instance.
86
+     * 
87
+     * @throws BaseException
88
+     * @return resource
89
+     */
90 90
     private function initCURL()
91 91
     {
92 92
         $ch = curl_init();
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
         return $ch;
104 104
     }
105 105
     
106
-   /**
107
-    * @param resource $ch
108
-    */
106
+    /**
107
+     * @param resource $ch
108
+     */
109 109
     private function configureOptions($ch) : void
110 110
     {
111 111
         if($this->isVerboseModeEnabled())
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     * @param bool $verifySSL
49 49
     * @return URLInfo_ConnectionTester
50 50
     */
51
-    public function setVerifySSL(bool $verifySSL=true) : URLInfo_ConnectionTester
51
+    public function setVerifySSL(bool $verifySSL = true) : URLInfo_ConnectionTester
52 52
     {
53 53
         $this->setOption('verify-ssl', $verifySSL);
54 54
             return $this;
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         return $this->getBoolOption('verify-ssl');
60 60
     }
61 61
     
62
-    public function setVerboseMode(bool $enabled=true) : URLInfo_ConnectionTester
62
+    public function setVerboseMode(bool $enabled = true) : URLInfo_ConnectionTester
63 63
     {
64 64
         $this->setOption('curl-verbose', $enabled);
65 65
         return $this;
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     {
92 92
         $ch = curl_init();
93 93
         
94
-        if(!is_resource($ch))
94
+        if (!is_resource($ch))
95 95
         {
96 96
             throw new BaseException(
97 97
                 'Could not initialize a new cURL instance.',
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     */
109 109
     private function configureOptions($ch) : void
110 110
     {
111
-        if($this->isVerboseModeEnabled())
111
+        if ($this->isVerboseModeEnabled())
112 112
         {
113 113
             curl_setopt($ch, CURLOPT_VERBOSE, true);
114 114
         }
@@ -118,13 +118,13 @@  discard block
 block discarded – undo
118 118
         curl_setopt($ch, CURLOPT_TIMEOUT, $this->getTimeout());
119 119
         curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
120 120
         
121
-        if(!$this->isVerifySSLEnabled())
121
+        if (!$this->isVerifySSLEnabled())
122 122
         {
123 123
             curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
124 124
             curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
125 125
         }
126 126
         
127
-        if($this->url->hasUsername())
127
+        if ($this->url->hasUsername())
128 128
         {
129 129
             curl_setopt($ch, CURLOPT_USERNAME, $this->url->getUsername());
130 130
             curl_setopt($ch, CURLOPT_PASSWORD, $this->url->getPassword());
Please login to merge, or discard this patch.
src/StringBuilder.php 2 patches
Indentation   +147 added lines, -147 removed lines patch added patch discarded remove patch
@@ -33,24 +33,24 @@  discard block
 block discarded – undo
33 33
  */
34 34
 class StringBuilder implements StringBuilder_Interface
35 35
 {
36
-   /**
37
-    * @var string
38
-    */
36
+    /**
37
+     * @var string
38
+     */
39 39
     protected $separator = ' ';
40 40
 
41
-   /**
42
-    * @var string[]
43
-    */
41
+    /**
42
+     * @var string[]
43
+     */
44 44
     protected $strings = array();
45 45
 
46
-   /**
47
-    * @var string
48
-    */
46
+    /**
47
+     * @var string
48
+     */
49 49
     protected $mode = 'html';
50 50
 
51
-   /**
52
-    * @var string
53
-    */
51
+    /**
52
+     * @var string
53
+     */
54 54
     protected $noSpace = '§!§';
55 55
     
56 56
     public function __construct()
@@ -58,12 +58,12 @@  discard block
 block discarded – undo
58 58
         
59 59
     }
60 60
     
61
-   /**
62
-    * Adds a subject as a string. Is ignored if empty.
63
-    * 
64
-    * @param string|number|StringBuilder_Interface $string
65
-    * @return $this
66
-    */
61
+    /**
62
+     * Adds a subject as a string. Is ignored if empty.
63
+     * 
64
+     * @param string|number|StringBuilder_Interface $string
65
+     * @return $this
66
+     */
67 67
     public function add($string) : StringBuilder
68 68
     {
69 69
         $string = strval($string);
@@ -76,57 +76,57 @@  discard block
 block discarded – undo
76 76
         return $this;
77 77
     }
78 78
     
79
-   /**
80
-    * Adds a string without appending an automatic space.
81
-    * 
82
-    * @param string|number|StringBuilder_Interface $string
83
-    * @return $this
84
-    */
79
+    /**
80
+     * Adds a string without appending an automatic space.
81
+     * 
82
+     * @param string|number|StringBuilder_Interface $string
83
+     * @return $this
84
+     */
85 85
     public function nospace($string) : StringBuilder
86 86
     {
87 87
         return $this->add($this->noSpace.strval($string));
88 88
     }
89 89
     
90
-   /**
91
-    * Adds raw HTML code. Does not add an automatic space.
92
-    * 
93
-    * @param string|number|StringBuilder_Interface $html
94
-    * @return $this
95
-    */
90
+    /**
91
+     * Adds raw HTML code. Does not add an automatic space.
92
+     * 
93
+     * @param string|number|StringBuilder_Interface $html
94
+     * @return $this
95
+     */
96 96
     public function html($html) : StringBuilder
97 97
     {
98 98
         return $this->nospace($html);
99 99
     }
100 100
     
101
-   /**
102
-    * Adds an unordered list with the specified items.
103
-    * 
104
-    * @param array<int,string|number|StringBuilder_Interface> $items
105
-    * @return $this
106
-    */
101
+    /**
102
+     * Adds an unordered list with the specified items.
103
+     * 
104
+     * @param array<int,string|number|StringBuilder_Interface> $items
105
+     * @return $this
106
+     */
107 107
     public function ul(array $items) : StringBuilder
108 108
     {
109 109
         return $this->list('ul', $items);
110 110
     }
111 111
     
112
-   /**
113
-    * Adds an ordered list with the specified items.
114
-    * 
115
-    * @param array<int,string|number|StringBuilder_Interface> $items
116
-    * @return $this
117
-    */
112
+    /**
113
+     * Adds an ordered list with the specified items.
114
+     * 
115
+     * @param array<int,string|number|StringBuilder_Interface> $items
116
+     * @return $this
117
+     */
118 118
     public function ol(array $items) : StringBuilder
119 119
     {
120 120
         return $this->list('ol', $items);
121 121
     }
122 122
     
123
-   /**
124
-    * Creates a list tag with the items list.
125
-    * 
126
-    * @param string $type The list type, `ol` or `ul`.
127
-    * @param array<int,string|number|StringBuilder_Interface> $items
128
-    * @return $this
129
-    */
123
+    /**
124
+     * Creates a list tag with the items list.
125
+     * 
126
+     * @param string $type The list type, `ol` or `ul`.
127
+     * @param array<int,string|number|StringBuilder_Interface> $items
128
+     * @return $this
129
+     */
130 130
     protected function list(string $type, array $items) : StringBuilder
131 131
     {
132 132
         return $this->html(sprintf(
@@ -136,13 +136,13 @@  discard block
 block discarded – undo
136 136
         ));
137 137
     }
138 138
     
139
-   /**
140
-    * Add a translated string.
141
-    * 
142
-    * @param string $format The native string to translate.
143
-    * @param array<int,mixed> $arguments The variables to inject into the translated string, if any.
144
-    * @return $this
145
-    */
139
+    /**
140
+     * Add a translated string.
141
+     * 
142
+     * @param string $format The native string to translate.
143
+     * @param array<int,mixed> $arguments The variables to inject into the translated string, if any.
144
+     * @return $this
145
+     */
146 146
     public function t(string $format, ...$arguments) : StringBuilder
147 147
     {
148 148
         array_unshift($arguments, $format);
@@ -158,47 +158,47 @@  discard block
 block discarded – undo
158 158
         ));
159 159
     }
160 160
     
161
-   /**
162
-    * Adds a "5 months ago" age since the specified date.
163
-    * 
164
-    * @param DateTime $since
165
-    * @return $this
166
-    */
161
+    /**
162
+     * Adds a "5 months ago" age since the specified date.
163
+     * 
164
+     * @param DateTime $since
165
+     * @return $this
166
+     */
167 167
     public function age(DateTime $since) : StringBuilder
168 168
     {
169 169
         return $this->add(ConvertHelper::duration2string($since));
170 170
     }
171 171
     
172
-   /**
173
-    * Adds HTML quotes around the string.
174
-    * 
175
-    * @param string|number|StringBuilder_Interface $string
176
-    * @return $this
177
-    */
172
+    /**
173
+     * Adds HTML quotes around the string.
174
+     * 
175
+     * @param string|number|StringBuilder_Interface $string
176
+     * @return $this
177
+     */
178 178
     public function quote($string)
179 179
     {
180 180
         return $this->sf('&quot;%s&quot;', strval($string));
181 181
     }
182 182
     
183
-   /**
184
-    * Adds a text that is meant as a reference to an UI element,
185
-    * like a menu item, button, etc.
186
-    * 
187
-    * @param string|number|StringBuilder_Interface $string 
188
-    * @return $this
189
-    */
183
+    /**
184
+     * Adds a text that is meant as a reference to an UI element,
185
+     * like a menu item, button, etc.
186
+     * 
187
+     * @param string|number|StringBuilder_Interface $string 
188
+     * @return $this
189
+     */
190 190
     public function reference($string) : StringBuilder
191 191
     {
192 192
         return $this->sf('"%s"', $string);
193 193
     }
194 194
 
195
-   /**
196
-    * Add a string using the `sprintf` method.
197
-    * 
198
-    * @param string $format The format string
199
-    * @param string|number|StringBuilder_Interface ...$arguments The variables to inject
200
-    * @return $this
201
-    */
195
+    /**
196
+     * Add a string using the `sprintf` method.
197
+     * 
198
+     * @param string $format The format string
199
+     * @param string|number|StringBuilder_Interface ...$arguments The variables to inject
200
+     * @return $this
201
+     */
202 202
     public function sf(string $format, ...$arguments) : StringBuilder
203 203
     {
204 204
         array_unshift($arguments, $format);
@@ -206,12 +206,12 @@  discard block
 block discarded – undo
206 206
         return $this->add(call_user_func_array('sprintf', $arguments));
207 207
     }
208 208
     
209
-   /**
210
-    * Adds a bold string.
211
-    * 
212
-    * @param string|number|StringBuilder_Interface $string
213
-    * @return $this
214
-    */
209
+    /**
210
+     * Adds a bold string.
211
+     * 
212
+     * @param string|number|StringBuilder_Interface $string
213
+     * @return $this
214
+     */
215 215
     public function bold($string) : StringBuilder
216 216
     {
217 217
         return $this->sf(
@@ -220,12 +220,12 @@  discard block
 block discarded – undo
220 220
         );
221 221
     }
222 222
     
223
-   /**
224
-    * Adds a HTML `br` tag.
225
-    * 
226
-    * @return $this
227
-    * @see StringBuilder::eol()
228
-    */
223
+    /**
224
+     * Adds a HTML `br` tag.
225
+     * 
226
+     * @return $this
227
+     * @see StringBuilder::eol()
228
+     */
229 229
     public function nl() : StringBuilder
230 230
     {
231 231
         return $this->html('<br>');
@@ -242,52 +242,52 @@  discard block
 block discarded – undo
242 242
         return $this->nospace(PHP_EOL);
243 243
     }
244 244
     
245
-   /**
246
-    * Adds the current time, in the format <code>H:i:s</code>.
247
-    * 
248
-    * @return $this
249
-    */
245
+    /**
246
+     * Adds the current time, in the format <code>H:i:s</code>.
247
+     * 
248
+     * @return $this
249
+     */
250 250
     public function time() : StringBuilder
251 251
     {
252 252
         return $this->add(date('H:i:s'));
253 253
     }
254 254
     
255
-   /**
256
-    * Adds the "Note:" text.
257
-    * 
258
-    * @return $this
259
-    */
255
+    /**
256
+     * Adds the "Note:" text.
257
+     * 
258
+     * @return $this
259
+     */
260 260
     public function note() : StringBuilder
261 261
     {
262 262
         return $this->t('Note:');
263 263
     }
264 264
     
265
-   /**
266
-    * Like `note()`, but as bold text.
267
-    * 
268
-    * @return $this
269
-    */
265
+    /**
266
+     * Like `note()`, but as bold text.
267
+     * 
268
+     * @return $this
269
+     */
270 270
     public function noteBold() : StringBuilder
271 271
     {
272 272
         return $this->bold(sb()->note());
273 273
     }
274 274
     
275
-   /**
276
-    * Adds the "Hint:" text.
277
-    * 
278
-    * @return $this
279
-    */
275
+    /**
276
+     * Adds the "Hint:" text.
277
+     * 
278
+     * @return $this
279
+     */
280 280
     public function hint() : StringBuilder
281 281
     {
282 282
         return $this->t('Hint:');
283 283
     }
284 284
     
285
-   /**
286
-    * Adds two linebreaks.
287
-    *
288
-    * @param StringBuilder_Interface|string|NULL $content
289
-    * @return $this
290
-    */
285
+    /**
286
+     * Adds two linebreaks.
287
+     *
288
+     * @param StringBuilder_Interface|string|NULL $content
289
+     * @return $this
290
+     */
291 291
     public function para($content=null) : StringBuilder
292 292
     {
293 293
         if($content !== null) {
@@ -297,14 +297,14 @@  discard block
 block discarded – undo
297 297
         return $this->nl()->nl();
298 298
     }
299 299
     
300
-   /**
301
-    * Adds an anchor HTML tag.
302
-    * 
303
-    * @param string $label
304
-    * @param string $url
305
-    * @param bool $newTab
306
-    * @return $this
307
-    */
300
+    /**
301
+     * Adds an anchor HTML tag.
302
+     * 
303
+     * @param string $label
304
+     * @param string $url
305
+     * @param bool $newTab
306
+     * @return $this
307
+     */
308 308
     public function link(string $label, string $url, bool $newTab=false) : StringBuilder
309 309
     {
310 310
         $target = '';
@@ -320,12 +320,12 @@  discard block
 block discarded – undo
320 320
         );
321 321
     }
322 322
     
323
-   /**
324
-    * Wraps the string in a `code` tag.
325
-    * 
326
-    * @param string|number|StringBuilder_Interface $string
327
-    * @return $this
328
-    */
323
+    /**
324
+     * Wraps the string in a `code` tag.
325
+     * 
326
+     * @param string|number|StringBuilder_Interface $string
327
+     * @return $this
328
+     */
329 329
     public function code($string) : StringBuilder
330 330
     {
331 331
         return $this->sf(
@@ -334,24 +334,24 @@  discard block
 block discarded – undo
334 334
         );
335 335
     }
336 336
     
337
-   /**
338
-    * Wraps the string in a `pre` tag.
339
-    * 
340
-    * @param string|number|StringBuilder_Interface $string
341
-    * @return $this
342
-    */
337
+    /**
338
+     * Wraps the string in a `pre` tag.
339
+     * 
340
+     * @param string|number|StringBuilder_Interface $string
341
+     * @return $this
342
+     */
343 343
     public function pre($string) : StringBuilder
344 344
     {
345 345
         return $this->sf('<pre>%s</pre>', strval($string));
346 346
     }
347 347
     
348
-   /**
349
-    * Wraps the text in a `span` tag with the specified classes.
350
-    * 
351
-    * @param string|number|StringBuilder_Interface $string
352
-    * @param string|string[] $classes
353
-    * @return $this
354
-    */
348
+    /**
349
+     * Wraps the text in a `span` tag with the specified classes.
350
+     * 
351
+     * @param string|number|StringBuilder_Interface $string
352
+     * @param string|string[] $classes
353
+     * @return $this
354
+     */
355 355
     protected function spanned($string, $classes) : StringBuilder
356 356
     {
357 357
         if(!is_array($classes)) 
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         $string = strval($string);
70 70
         
71
-        if(!empty($string)) 
71
+        if (!empty($string)) 
72 72
         {
73 73
             $this->strings[] = $string;
74 74
         }
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
     {
148 148
         array_unshift($arguments, $format);
149 149
         
150
-        if(!class_exists('\AppLocalize\Localization'))
150
+        if (!class_exists('\AppLocalize\Localization'))
151 151
         {
152 152
             return $this->sf(...$arguments);
153 153
         }
@@ -288,9 +288,9 @@  discard block
 block discarded – undo
288 288
     * @param StringBuilder_Interface|string|NULL $content
289 289
     * @return $this
290 290
     */
291
-    public function para($content=null) : StringBuilder
291
+    public function para($content = null) : StringBuilder
292 292
     {
293
-        if($content !== null) {
293
+        if ($content !== null) {
294 294
             return $this->html('<p>')->nospace($content)->html('</p>');
295 295
         }
296 296
 
@@ -305,10 +305,10 @@  discard block
 block discarded – undo
305 305
     * @param bool $newTab
306 306
     * @return $this
307 307
     */
308
-    public function link(string $label, string $url, bool $newTab=false) : StringBuilder
308
+    public function link(string $label, string $url, bool $newTab = false) : StringBuilder
309 309
     {
310 310
         $target = '';
311
-        if($newTab) {
311
+        if ($newTab) {
312 312
             $target = ' target="_blank"';
313 313
         }
314 314
        
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
     */
355 355
     protected function spanned($string, $classes) : StringBuilder
356 356
     {
357
-        if(!is_array($classes)) 
357
+        if (!is_array($classes)) 
358 358
         {
359 359
             $classes = array(strval($classes));
360 360
         }
Please login to merge, or discard this patch.
src/FileHelper/MimeTypes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -288,9 +288,9 @@
 block discarded – undo
288 288
      * @param string $extension
289 289
      * @return string|NULL
290 290
      */
291
-    public static function getMime(string $extension) :?string
291
+    public static function getMime(string $extension) : ?string
292 292
     {
293
-        if(isset(self::$mimeTypes[$extension])) {
293
+        if (isset(self::$mimeTypes[$extension])) {
294 294
             return self::$mimeTypes[$extension];
295 295
         }
296 296
 
Please login to merge, or discard this patch.
src/VariableInfo/Renderer/String/Callable.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,20 +13,20 @@  discard block
 block discarded – undo
13 13
         $string = '';
14 14
 
15 15
         // Simple function call
16
-        if(is_string($this->value))
16
+        if (is_string($this->value))
17 17
         {
18 18
             return $this->value.'()';
19 19
         }
20 20
 
21
-        if(is_array($this->value)) {
21
+        if (is_array($this->value)) {
22 22
             return $this->renderArray();
23 23
         }
24 24
 
25
-        if($this->value instanceof NamedClosure) {
25
+        if ($this->value instanceof NamedClosure) {
26 26
             return 'Closure:'.$this->value->getOrigin();
27 27
         }
28 28
 
29
-        if($this->value instanceof Closure) {
29
+        if ($this->value instanceof Closure) {
30 30
             return 'Closure';
31 31
         }
32 32
 
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
         $string = '';
39 39
 
40 40
         if (is_string($this->value[0])) {
41
-            $string .= $this->value[0] . '::';
41
+            $string .= $this->value[0].'::';
42 42
         } else {
43
-            $string .= get_class($this->value[0]) . '->';
43
+            $string .= get_class($this->value[0]).'->';
44 44
         }
45 45
 
46 46
         $string .= $this->value[1].'()';
Please login to merge, or discard this patch.
src/NamedClosure.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     public static function fromClosure(Closure $closure, $origin) : NamedClosure
76 76
     {
77
-        if(is_object($origin)) {
77
+        if (is_object($origin)) {
78 78
             $origin = get_class($origin);
79 79
         }
80 80
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      * @param string|object $origin Optional origin. If not specified, the object and method name are used instead.
88 88
      * @return NamedClosure
89 89
      */
90
-    public static function fromObject(object $object, string $method, $origin='') : NamedClosure
90
+    public static function fromObject(object $object, string $method, $origin = '') : NamedClosure
91 91
     {
92 92
         return self::fromArray(array($object, $method), $origin);
93 93
     }
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
      * @param string|object $origin
98 98
      * @return NamedClosure
99 99
      */
100
-    public static function fromArray(array $callback, $origin='') : NamedClosure
100
+    public static function fromArray(array $callback, $origin = '') : NamedClosure
101 101
     {
102
-        if(empty($origin)) {
102
+        if (empty($origin)) {
103 103
             $origin = ConvertHelper::callback2string($callback);
104
-        } else if(is_object($origin)) {
104
+        } else if (is_object($origin)) {
105 105
             $origin = get_class($origin);
106 106
         }
107 107
 
Please login to merge, or discard this patch.