Passed
Push — master ( 5c92ad...c324fc )
by Sebastian
02:40
created
src/RequestHelper.php 1 patch
Indentation   +151 added lines, -151 removed lines patch added patch discarded remove patch
@@ -32,62 +32,62 @@  discard block
 block discarded – undo
32 32
     const ERROR_CURL_INIT_FAILED = 17903;
33 33
     const ERROR_CANNOT_OPEN_LOGFILE = 17904;
34 34
 
35
-   /**
36
-    * @var string
37
-    */
35
+    /**
36
+     * @var string
37
+     */
38 38
     protected $eol = "\r\n";
39 39
 
40
-   /**
41
-    * @var string
42
-    */
40
+    /**
41
+     * @var string
42
+     */
43 43
     protected $mimeBoundary;
44 44
 
45
-   /**
46
-    * @var string
47
-    */
45
+    /**
46
+     * @var string
47
+     */
48 48
     protected $destination;
49 49
 
50
-   /**
51
-    * @var array<string,string>
52
-    */
50
+    /**
51
+     * @var array<string,string>
52
+     */
53 53
     protected $headers = array();
54 54
     
55
-   /**
56
-    * Whether to verify SSL certificates.
57
-    * @var bool
58
-    */
55
+    /**
56
+     * Whether to verify SSL certificates.
57
+     * @var bool
58
+     */
59 59
     protected $verifySSL = true;
60 60
     
61
-   /**
62
-    * @var RequestHelper_Boundaries
63
-    */
61
+    /**
62
+     * @var RequestHelper_Boundaries
63
+     */
64 64
     protected $boundaries;
65 65
     
66
-   /**
67
-    * @var RequestHelper_Response|NULL
68
-    */
66
+    /**
67
+     * @var RequestHelper_Response|NULL
68
+     */
69 69
     protected $response;
70 70
 
71
-   /**
72
-    * Timeout duration, in seconds.
73
-    * @var integer
74
-    */
71
+    /**
72
+     * Timeout duration, in seconds.
73
+     * @var integer
74
+     */
75 75
     protected $timeout = 30;
76 76
     
77
-   /**
78
-    * @var string
79
-    */
77
+    /**
78
+     * @var string
79
+     */
80 80
     protected $logfile = '';
81 81
 
82
-   /**
83
-    * @var resource|NULL
84
-    */
82
+    /**
83
+     * @var resource|NULL
84
+     */
85 85
     protected $logfilePointer = null;
86 86
     
87
-   /**
88
-    * Creates a new request helper to send POST data to the specified destination URL.
89
-    * @param string $destinationURL
90
-    */
87
+    /**
88
+     * Creates a new request helper to send POST data to the specified destination URL.
89
+     * @param string $destinationURL
90
+     */
91 91
     public function __construct(string $destinationURL)
92 92
     {
93 93
         $this->destination = $destinationURL;
@@ -112,13 +112,13 @@  discard block
 block discarded – undo
112 112
         return $this->eol;
113 113
     }
114 114
     
115
-   /**
116
-    * Sets the timeout for the request, in seconds. If the request
117
-    * takes longer, it will be cancelled and an exception triggered.
118
-    * 
119
-    * @param int $seconds
120
-    * @return RequestHelper
121
-    */
115
+    /**
116
+     * Sets the timeout for the request, in seconds. If the request
117
+     * takes longer, it will be cancelled and an exception triggered.
118
+     * 
119
+     * @param int $seconds
120
+     * @return RequestHelper
121
+     */
122 122
     public function setTimeout(int $seconds) : RequestHelper
123 123
     {
124 124
         $this->timeout = $seconds;
@@ -131,13 +131,13 @@  discard block
 block discarded – undo
131 131
         return $this->timeout;
132 132
     }
133 133
     
134
-   /**
135
-    * Enables verbose logging of the CURL request, which
136
-    * is then redirected to the target file.
137
-    * 
138
-    * @param string $targetFile
139
-    * @return RequestHelper
140
-    */
134
+    /**
135
+     * Enables verbose logging of the CURL request, which
136
+     * is then redirected to the target file.
137
+     * 
138
+     * @param string $targetFile
139
+     * @return RequestHelper
140
+     */
141 141
     public function enableLogging(string $targetFile) : RequestHelper
142 142
     {
143 143
         $this->logfile = $targetFile;
@@ -145,15 +145,15 @@  discard block
 block discarded – undo
145 145
         return $this;
146 146
     }
147 147
 
148
-   /**
149
-    * Adds a file to be sent with the request.
150
-    *
151
-    * @param string $varName The variable name to send the file in
152
-    * @param string $fileName The name of the file as it should be received at the destination
153
-    * @param string $content The raw content of the file
154
-    * @param string $contentType The content type, use the constants to specify this
155
-    * @param string $encoding The encoding of the file, use the constants to specify this
156
-    */
148
+    /**
149
+     * Adds a file to be sent with the request.
150
+     *
151
+     * @param string $varName The variable name to send the file in
152
+     * @param string $fileName The name of the file as it should be received at the destination
153
+     * @param string $content The raw content of the file
154
+     * @param string $contentType The content type, use the constants to specify this
155
+     * @param string $encoding The encoding of the file, use the constants to specify this
156
+     */
157 157
     public function addFile(string $varName, string $fileName, string $content, string $contentType = '', string $encoding = '') : RequestHelper
158 158
     {
159 159
         $this->boundaries->addFile($varName, $fileName, $content, $contentType, $encoding);
@@ -161,13 +161,13 @@  discard block
 block discarded – undo
161 161
         return $this;
162 162
     }
163 163
     
164
-   /**
165
-    * Adds arbitrary content.
166
-    * 
167
-    * @param string $varName The variable name to send the content in.
168
-    * @param string $content
169
-    * @param string $contentType
170
-    */
164
+    /**
165
+     * Adds arbitrary content.
166
+     * 
167
+     * @param string $varName The variable name to send the content in.
168
+     * @param string $content
169
+     * @param string $contentType
170
+     */
171 171
     public function addContent(string $varName, string $content, string $contentType) : RequestHelper
172 172
     {
173 173
         $this->boundaries->addContent($varName, $content, $contentType);
@@ -175,13 +175,13 @@  discard block
 block discarded – undo
175 175
         return $this;
176 176
     }
177 177
 
178
-   /**
179
-    * Adds a variable to be sent with the request. If it
180
-    * already exists, its value is overwritten.
181
-    *
182
-    * @param string $name
183
-    * @param string $value
184
-    */
178
+    /**
179
+     * Adds a variable to be sent with the request. If it
180
+     * already exists, its value is overwritten.
181
+     *
182
+     * @param string $name
183
+     * @param string $value
184
+     */
185 185
     public function addVariable(string $name, string $value) : RequestHelper
186 186
     {
187 187
         $this->boundaries->addVariable($name, $value);
@@ -189,13 +189,13 @@  discard block
 block discarded – undo
189 189
         return $this;
190 190
     }
191 191
     
192
-   /**
193
-    * Sets an HTTP header to include in the request.
194
-    * 
195
-    * @param string $name
196
-    * @param string $value
197
-    * @return RequestHelper
198
-    */
192
+    /**
193
+     * Sets an HTTP header to include in the request.
194
+     * 
195
+     * @param string $name
196
+     * @param string $value
197
+     * @return RequestHelper
198
+     */
199 199
     public function setHeader(string $name, string $value) : RequestHelper
200 200
     {
201 201
         $this->headers[$name] = $value;
@@ -203,36 +203,36 @@  discard block
 block discarded – undo
203 203
         return $this;
204 204
     }
205 205
     
206
-   /**
207
-    * Disables SSL certificate checking.
208
-    * 
209
-    * @return RequestHelper
210
-    */
206
+    /**
207
+     * Disables SSL certificate checking.
208
+     * 
209
+     * @return RequestHelper
210
+     */
211 211
     public function disableSSLChecks() : RequestHelper
212 212
     {
213 213
         $this->verifySSL = false;
214 214
         return $this;
215 215
     }
216 216
    
217
-   /**
218
-    * @var integer
219
-    */
217
+    /**
218
+     * @var integer
219
+     */
220 220
     protected $contentLength = 0;
221 221
 
222
-   /**
223
-    * Sends the POST request to the destination, and returns
224
-    * the response text.
225
-    *
226
-    * The response object is stored internally, so after calling
227
-    * this method it may be retrieved at any moment using the
228
-    * {@link getResponse()} method.
229
-    *
230
-    * @return string
231
-    * @see RequestHelper::getResponse()
232
-    * @throws RequestHelper_Exception
233
-    * 
234
-    * @see RequestHelper::ERROR_REQUEST_FAILED
235
-    */
222
+    /**
223
+     * Sends the POST request to the destination, and returns
224
+     * the response text.
225
+     *
226
+     * The response object is stored internally, so after calling
227
+     * this method it may be retrieved at any moment using the
228
+     * {@link getResponse()} method.
229
+     *
230
+     * @return string
231
+     * @see RequestHelper::getResponse()
232
+     * @throws RequestHelper_Exception
233
+     * 
234
+     * @see RequestHelper::ERROR_REQUEST_FAILED
235
+     */
236 236
     public function send() : string
237 237
     {
238 238
         $info = parseURL($this->destination);
@@ -272,26 +272,26 @@  discard block
 block discarded – undo
272 272
         return $this->response->getResponseBody();
273 273
     }
274 274
     
275
-   /**
276
-    * Retrieves the request's body content. This is an alias
277
-    * for {@see RequestHelper::getMimeBody()}.
278
-    * 
279
-    * @return string
280
-    * @see RequestHelper::getMimeBody()
281
-    */
275
+    /**
276
+     * Retrieves the request's body content. This is an alias
277
+     * for {@see RequestHelper::getMimeBody()}.
278
+     * 
279
+     * @return string
280
+     * @see RequestHelper::getMimeBody()
281
+     */
282 282
     public function getBody() : string
283 283
     {
284 284
         return $this->getMimeBody();
285 285
     }
286 286
     
287
-   /**
288
-    * Creates a new CURL resource configured according to the
289
-    * request's settings.
290
-    * 
291
-    * @param URLInfo $url
292
-    * @throws RequestHelper_Exception
293
-    * @return resource
294
-    */
287
+    /**
288
+     * Creates a new CURL resource configured according to the
289
+     * request's settings.
290
+     * 
291
+     * @param URLInfo $url
292
+     * @throws RequestHelper_Exception
293
+     * @return resource
294
+     */
295 295
     protected function createCURL(URLInfo $url)
296 296
     {
297 297
         $ch = curl_init();
@@ -339,10 +339,10 @@  discard block
 block discarded – undo
339 339
         return $ch;
340 340
     }
341 341
     
342
-   /**
343
-    * @param resource $ch
344
-    * @return bool Whether logging is enabled.
345
-    */
342
+    /**
343
+     * @param resource $ch
344
+     * @return bool Whether logging is enabled.
345
+     */
346 346
     protected function configureLogging($ch) : bool
347 347
     {
348 348
         if(empty($this->logfile))
@@ -369,13 +369,13 @@  discard block
 block discarded – undo
369 369
         return true;
370 370
     }
371 371
 
372
-   /**
373
-    * Compiles the associative headers array into
374
-    * the format understood by CURL, namely an indexed
375
-    * array with one header string per entry.
376
-    * 
377
-    * @return array
378
-    */
372
+    /**
373
+     * Compiles the associative headers array into
374
+     * the format understood by CURL, namely an indexed
375
+     * array with one header string per entry.
376
+     * 
377
+     * @return array
378
+     */
379 379
     protected function renderHeaders() : array
380 380
     {
381 381
         $result = array();
@@ -389,12 +389,12 @@  discard block
 block discarded – undo
389 389
         return $result;
390 390
     }
391 391
     
392
-   /**
393
-    * Retrieves the raw response header, in the form of an indexed
394
-    * array containing all response header lines.
395
-    * 
396
-    * @return array
397
-    */
392
+    /**
393
+     * Retrieves the raw response header, in the form of an indexed
394
+     * array containing all response header lines.
395
+     * 
396
+     * @return array
397
+     */
398 398
     public function getResponseHeader() : array
399 399
     {
400 400
         $response = $this->getResponse();
@@ -406,33 +406,33 @@  discard block
 block discarded – undo
406 406
         return array();
407 407
     }
408 408
 
409
-   /**
410
-    * After calling the {@link send()} method, this may be used to
411
-    * retrieve the response text from the POST request.
412
-    *
413
-    * @return RequestHelper_Response|NULL
414
-    */
409
+    /**
410
+     * After calling the {@link send()} method, this may be used to
411
+     * retrieve the response text from the POST request.
412
+     *
413
+     * @return RequestHelper_Response|NULL
414
+     */
415 415
     public function getResponse() : ?RequestHelper_Response
416 416
     {
417 417
         return $this->response;
418 418
     }
419 419
     
420
-   /**
421
-    * Retrieves all headers set until now.
422
-    * 
423
-    * @return array<string,string>
424
-    */
420
+    /**
421
+     * Retrieves all headers set until now.
422
+     * 
423
+     * @return array<string,string>
424
+     */
425 425
     public function getHeaders() : array
426 426
     {
427 427
         return $this->headers;
428 428
     }
429 429
     
430
-   /**
431
-    * Retrieves the value of a header by its name.
432
-    * 
433
-    * @param string $name
434
-    * @return string The header value, or an empty string if not set.
435
-    */
430
+    /**
431
+     * Retrieves the value of a header by its name.
432
+     * 
433
+     * @param string $name
434
+     * @return string The header value, or an empty string if not set.
435
+     */
436 436
     public function getHeader(string $name) : string
437 437
     {
438 438
         if(isset($this->headers[$name]))
Please login to merge, or discard this patch.
src/StringBuilder.php 1 patch
Indentation   +145 added lines, -145 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,74 +220,74 @@  discard block
 block discarded – undo
220 220
         );
221 221
     }
222 222
     
223
-   /**
224
-    * Adds a HTML `br` tag.
225
-    * 
226
-    * @return $this
227
-    */
223
+    /**
224
+     * Adds a HTML `br` tag.
225
+     * 
226
+     * @return $this
227
+     */
228 228
     public function nl() : StringBuilder
229 229
     {
230 230
         return $this->html('<br>');
231 231
     }
232 232
     
233
-   /**
234
-    * Adds the current time, in the format <code>H:i:s</code>.
235
-    * 
236
-    * @return $this
237
-    */
233
+    /**
234
+     * Adds the current time, in the format <code>H:i:s</code>.
235
+     * 
236
+     * @return $this
237
+     */
238 238
     public function time() : StringBuilder
239 239
     {
240 240
         return $this->add(date('H:i:s'));
241 241
     }
242 242
     
243
-   /**
244
-    * Adds the "Note:" text.
245
-    * 
246
-    * @return $this
247
-    */
243
+    /**
244
+     * Adds the "Note:" text.
245
+     * 
246
+     * @return $this
247
+     */
248 248
     public function note() : StringBuilder
249 249
     {
250 250
         return $this->t('Note:');
251 251
     }
252 252
     
253
-   /**
254
-    * Like `note()`, but as bold text.
255
-    * 
256
-    * @return $this
257
-    */
253
+    /**
254
+     * Like `note()`, but as bold text.
255
+     * 
256
+     * @return $this
257
+     */
258 258
     public function noteBold() : StringBuilder
259 259
     {
260 260
         return $this->bold(sb()->note());
261 261
     }
262 262
     
263
-   /**
264
-    * Adds the "Hint:" text.
265
-    * 
266
-    * @return $this
267
-    */
263
+    /**
264
+     * Adds the "Hint:" text.
265
+     * 
266
+     * @return $this
267
+     */
268 268
     public function hint() : StringBuilder
269 269
     {
270 270
         return $this->t('Hint:');
271 271
     }
272 272
     
273
-   /**
274
-    * Adds two linebreaks.
275
-    * 
276
-    * @return $this
277
-    */
273
+    /**
274
+     * Adds two linebreaks.
275
+     * 
276
+     * @return $this
277
+     */
278 278
     public function para() : StringBuilder
279 279
     {
280 280
         return $this->nl()->nl();
281 281
     }
282 282
     
283
-   /**
284
-    * Adds an anchor HTML tag.
285
-    * 
286
-    * @param string $label
287
-    * @param string $url
288
-    * @param bool $newTab
289
-    * @return $this
290
-    */
283
+    /**
284
+     * Adds an anchor HTML tag.
285
+     * 
286
+     * @param string $label
287
+     * @param string $url
288
+     * @param bool $newTab
289
+     * @return $this
290
+     */
291 291
     public function link(string $label, string $url, bool $newTab=false) : StringBuilder
292 292
     {
293 293
         $target = '';
@@ -303,12 +303,12 @@  discard block
 block discarded – undo
303 303
         );
304 304
     }
305 305
     
306
-   /**
307
-    * Wraps the string in a `code` tag.
308
-    * 
309
-    * @param string|number|StringBuilder_Interface $string
310
-    * @return $this
311
-    */
306
+    /**
307
+     * Wraps the string in a `code` tag.
308
+     * 
309
+     * @param string|number|StringBuilder_Interface $string
310
+     * @return $this
311
+     */
312 312
     public function code($string) : StringBuilder
313 313
     {
314 314
         return $this->sf(
@@ -317,24 +317,24 @@  discard block
 block discarded – undo
317 317
         );
318 318
     }
319 319
     
320
-   /**
321
-    * Wraps the string in a `pre` tag.
322
-    * 
323
-    * @param string|number|StringBuilder_Interface $string
324
-    * @return $this
325
-    */
320
+    /**
321
+     * Wraps the string in a `pre` tag.
322
+     * 
323
+     * @param string|number|StringBuilder_Interface $string
324
+     * @return $this
325
+     */
326 326
     public function pre($string) : StringBuilder
327 327
     {
328 328
         return $this->sf('<pre>%s</pre>', strval($string));
329 329
     }
330 330
     
331
-   /**
332
-    * Wraps the text in a `span` tag with the specified classes.
333
-    * 
334
-    * @param string|number|StringBuilder_Interface $string
335
-    * @param string|string[] $classes
336
-    * @return $this
337
-    */
331
+    /**
332
+     * Wraps the text in a `span` tag with the specified classes.
333
+     * 
334
+     * @param string|number|StringBuilder_Interface $string
335
+     * @param string|string[] $classes
336
+     * @return $this
337
+     */
338 338
     protected function spanned($string, $classes) : StringBuilder
339 339
     {
340 340
         if(!is_array($classes)) 
Please login to merge, or discard this patch.