@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | * |
209 | 209 | * @return void |
210 | 210 | */ |
211 | - public function __construct(?ServerRequestInterface $request = null, ?ResponseInterface $response = null) |
|
211 | + public function __construct(?ServerRequestInterface $request = null, ?ResponseInterface $response = null) |
|
212 | 212 | { |
213 | 213 | // Load helper functions. This is the must. |
214 | 214 | new Helpers(); |
@@ -658,9 +658,9 @@ discard block |
||
658 | 658 | $this->initComponents(); |
659 | 659 | |
660 | 660 | $processMethods = [ |
661 | - 'isRuleExist', // Stage 1 - Looking for rule table. |
|
662 | - 'isTrustedBot', // Stage 2 - Detect popular search engine. |
|
663 | - 'isFakeRobot', // Stage 3 - Reject fake search engine crawlers. |
|
661 | + 'isRuleExist', // Stage 1 - Looking for rule table. |
|
662 | + 'isTrustedBot', // Stage 2 - Detect popular search engine. |
|
663 | + 'isFakeRobot', // Stage 3 - Reject fake search engine crawlers. |
|
664 | 664 | 'isIpComponent', // Stage 4 - IP manager. |
665 | 665 | 'isComponents' // Stage 5 - Check other components. |
666 | 666 | ]; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | 'colors' => [ |
101 | 101 | 'background' => [255, 255, 255], |
102 | 102 | 'border' => [153, 200, 255], |
103 | - 'text' => [51, 153, 255], |
|
103 | + 'text' => [51, 153, 255], |
|
104 | 104 | 'grid' => [153, 200, 255] |
105 | 105 | ] |
106 | 106 | ]; |
@@ -319,14 +319,12 @@ discard block |
||
319 | 319 | { |
320 | 320 | // Determine angle and position. |
321 | 321 | $angle = ($this->length >= 6) ? |
322 | - mt_rand(-($this->length - 6), ($this->length - 6)) : |
|
323 | - 0; |
|
322 | + mt_rand(-($this->length - 6), ($this->length - 6)) : 0; |
|
324 | 323 | |
325 | 324 | $xAxis = mt_rand(6, (360 / $this->length) - 16); |
326 | 325 | |
327 | 326 | $yAxis = ($angle >= 0) ? |
328 | - mt_rand($imgHeight, $imgWidth) : |
|
329 | - mt_rand(6, $imgHeight); |
|
327 | + mt_rand($imgHeight, $imgWidth) : mt_rand(6, $imgHeight); |
|
330 | 328 | |
331 | 329 | // Create the spiral pattern. |
332 | 330 | $theta = 1; |
@@ -369,7 +367,7 @@ discard block |
||
369 | 367 | $y = 0; |
370 | 368 | |
371 | 369 | for ($i = 0; $i < $this->length; $i++) { |
372 | - $y = mt_rand(0 , $imgHeight / 2); |
|
370 | + $y = mt_rand(0, $imgHeight / 2); |
|
373 | 371 | imagestring($this->im, 5, $x, $y, $this->word[$i], $textColor); |
374 | 372 | $x += ($this->properties['font_spacing'] * 2); |
375 | 373 | } |
@@ -398,7 +396,7 @@ discard block |
||
398 | 396 | private function getImageBase64Content(): string |
399 | 397 | { |
400 | 398 | // Generate image in base64 string. |
401 | - ob_start (); |
|
399 | + ob_start(); |
|
402 | 400 | |
403 | 401 | if (function_exists('imagejpeg')) { |
404 | 402 | $this->imageType = 'jpeg'; |