Completed
Push — master ( 461460...f33045 )
by Владислав
13:25
created
tests/TwoCaptchaTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
         ]);
18 18
         $captcha->setErrorLang(\jumper423\decaptcha\core\DeCaptchaErrors::LANG_RU);
19 19
         $captcha->setCauseAnError(true);
20
-        $captcha->recognize(__DIR__.'/data/Captcha.jpg');
20
+        $captcha->recognize(__DIR__ . '/data/Captcha.jpg');
21 21
     }
22 22
 
23 23
     public function testRecognizeBalanceError2()
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
             \jumper423\decaptcha\services\TwoCaptcha::PARAM_SPEC_API_KEY => '200a1ed2b6ca001d8171c655658086ed',
27 27
         ]);
28 28
         $captcha->setErrorLang(\jumper423\decaptcha\core\DeCaptchaErrors::LANG_RU);
29
-        if ($captcha->recognize(__DIR__.'/data/Captcha.jpg')) {
29
+        if ($captcha->recognize(__DIR__ . '/data/Captcha.jpg')) {
30 30
             $this->assertEquals('11111111111111', $captcha->getCode());
31 31
         } else {
32 32
             $this->assertEquals('Нулевой либо отрицательный баланс', $captcha->getError());
Please login to merge, or discard this patch.
tests/DeCaptchaAbstractTest.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     public function testGetBaseUrl()
20 20
     {
21 21
         $abstract = $this->newInstance();
22
-        $getBaseUrlCaller = function () {
22
+        $getBaseUrlCaller = function() {
23 23
             $this->host = 'domain';
24 24
 
25 25
             return $this->getBaseUrl();
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         $this->assertEquals('http://domain/', $bound());
29 29
 
30 30
         $abstract = $this->newInstance();
31
-        $getBaseUrlCaller = function () {
31
+        $getBaseUrlCaller = function() {
32 32
             $this->host = 'domain';
33 33
             $this->scheme = 'https';
34 34
 
@@ -62,13 +62,13 @@  discard block
 block discarded – undo
62 62
     public function testGetFilePath()
63 63
     {
64 64
         $abstract = $this->newInstance();
65
-        $getFilePathCaller = function ($val) {
65
+        $getFilePathCaller = function($val) {
66 66
             return $this->getFilePath($val);
67 67
         };
68 68
         $bound = $getFilePathCaller->bindTo($abstract, $abstract);
69
-        $this->assertEquals(__DIR__.'/data/Captcha.jpg', $bound(__DIR__.'/data/Captcha.jpg'));
69
+        $this->assertEquals(__DIR__ . '/data/Captcha.jpg', $bound(__DIR__ . '/data/Captcha.jpg'));
70 70
         $filePathUpload = $bound('https://upload.wikimedia.org/wikipedia/commons/6/69/Captcha.jpg');
71
-        $file1 = file_get_contents(__DIR__.'/data/Captcha.jpg');
71
+        $file1 = file_get_contents(__DIR__ . '/data/Captcha.jpg');
72 72
         $file2 = file_get_contents($filePathUpload);
73 73
         $this->assertEquals($file1, $file2);
74 74
     }
@@ -80,11 +80,11 @@  discard block
 block discarded – undo
80 80
     public function testGetFilePathErrorFileNotFound()
81 81
     {
82 82
         $abstract = $this->newInstance();
83
-        $getFilePathCaller = function ($val) {
83
+        $getFilePathCaller = function($val) {
84 84
             return $this->getFilePath($val);
85 85
         };
86 86
         $bound = $getFilePathCaller->bindTo($abstract, $abstract);
87
-        $bound(__DIR__.'/data/Captcha1.jpg');
87
+        $bound(__DIR__ . '/data/Captcha1.jpg');
88 88
     }
89 89
 
90 90
     /**
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     public function testGetFilePathErrorFileIsNotLoaded()
96 96
     {
97 97
         $abstract = $this->newInstance();
98
-        $getFilePathCaller = function ($val) {
98
+        $getFilePathCaller = function($val) {
99 99
             return $this->getFilePath($val);
100 100
         };
101 101
         $bound = $getFilePathCaller->bindTo($abstract, $abstract);
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
     public function testExecutionDelayed()
118 118
     {
119 119
         $abstract = $this->newInstance();
120
-        $executionDelayedCaller = function ($second, $call = null) {
120
+        $executionDelayedCaller = function($second, $call = null) {
121 121
             return $this->executionDelayed($second, $call);
122 122
         };
123 123
         $bound = $executionDelayedCaller->bindTo($abstract, $abstract);
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         $this->assertTrue(abs($timePassed - 0.1) < 0.035);
129 129
 
130 130
         $start = microtime(true);
131
-        $bound(0.15, function () {
131
+        $bound(0.15, function() {
132 132
             sleep(0.2);
133 133
         });
134 134
         $bound(0.1);
@@ -136,14 +136,14 @@  discard block
 block discarded – undo
136 136
         $this->assertTrue(abs($timePassed - 0.25) < 0.035);
137 137
 
138 138
         $start = microtime(true);
139
-        $bound(0.15, function () {
139
+        $bound(0.15, function() {
140 140
             sleep(0.2);
141 141
         });
142 142
         $bound(0.3);
143 143
         $timePassed = microtime(true) - $start;
144 144
         $this->assertTrue(abs($timePassed - 0.45) < 0.035);
145 145
 
146
-        $this->assertEquals(2, $bound(0, function () {
146
+        $this->assertEquals(2, $bound(0, function() {
147 147
             return 2;
148 148
         }));
149 149
         $this->assertEquals(null, $bound(0));
Please login to merge, or discard this patch.
tests/AnticaptchaTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
             \jumper423\decaptcha\services\Anticaptcha::PARAM_SPEC_API_KEY => '5464654645646',
12 12
         ]);
13 13
         $captcha->setErrorLang(\jumper423\decaptcha\core\DeCaptchaErrors::LANG_RU);
14
-        if ($captcha->recognize(__DIR__.'/data/Captcha.jpg')) {
14
+        if ($captcha->recognize(__DIR__ . '/data/Captcha.jpg')) {
15 15
             $this->assertEquals('11111111111111', $captcha->getCode());
16 16
         } else {
17 17
             $this->assertEquals('Использован несуществующий key', $captcha->getError());
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
             \jumper423\decaptcha\services\Anticaptcha::ACTION_FIELD_LANGUAGE => 'ru',
26 26
         ]);
27 27
         $captcha->setErrorLang(\jumper423\decaptcha\core\DeCaptchaErrors::LANG_RU);
28
-        if ($captcha->recognize(__DIR__.'/data/Captcha.jpg')) {
28
+        if ($captcha->recognize(__DIR__ . '/data/Captcha.jpg')) {
29 29
             $this->assertEquals('11111111111111', $captcha->getCode());
30 30
         } else {
31 31
             $this->assertEquals('Нет в допустимых значиниях поля: languagePool = ru', $captcha->getError());
Please login to merge, or discard this patch.
src/core/DeCaptchaAbstract.php 1 patch
Spacing   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -101,8 +101,7 @@  discard block
 block discarded – undo
101 101
         }
102 102
         $decodeSetting = $this->decodeSettings[static::DECODE_ACTION][$action];
103 103
         $decodeFormat = array_key_exists(static::DECODE_FORMAT, $decodeSetting) ?
104
-            $decodeSetting[static::DECODE_FORMAT] :
105
-            $this->decodeSettings[static::DECODE_FORMAT];
104
+            $decodeSetting[static::DECODE_FORMAT] : $this->decodeSettings[static::DECODE_FORMAT];
106 105
         $values = [];
107 106
         switch ($decodeFormat) {
108 107
             case static::RESPONSE_TYPE_STRING:
@@ -179,7 +178,7 @@  discard block
 block discarded – undo
179 178
      */
180 179
     protected function getActionUrl($action)
181 180
     {
182
-        return $this->getBaseUrl().$this->actions[$action][static::ACTION_URI];
181
+        return $this->getBaseUrl() . $this->actions[$action][static::ACTION_URI];
183 182
     }
184 183
 
185 184
     /**
@@ -229,7 +228,7 @@  discard block
 block discarded – undo
229 228
                         return base64_encode(file_get_contents($this->params[$param]));
230 229
                 }
231 230
 
232
-                return (version_compare(PHP_VERSION, '5.5.0') >= 0) ? new \CURLFile($this->getFilePath($this->params[$param])) : '@'.$this->getFilePath($this->params[$param]);
231
+                return (version_compare(PHP_VERSION, '5.5.0') >= 0) ? new \CURLFile($this->getFilePath($this->params[$param])) : '@' . $this->getFilePath($this->params[$param]);
233 232
             case static::PARAM_SPEC_API_KEY:
234 233
                 return is_callable($this->params[$param]) ? $this->params[$param]() : $this->params[$param];
235 234
             case static::PARAM_SPEC_CAPTCHA:
@@ -296,7 +295,7 @@  discard block
 block discarded – undo
296 295
                         break;
297 296
                 }
298 297
                 if (array_key_exists(self::PARAM_SLUG_ENUM, $settings) && !in_array($value, $settings[static::PARAM_SLUG_ENUM])) {
299
-                    throw new DeCaptchaErrors(DeCaptchaErrors::ERROR_PARAM_ENUM, (array_key_exists($field, $this->paramsNames) ? $this->paramsNames[$field] : $field).' = '.$value, $this->errorLang);
298
+                    throw new DeCaptchaErrors(DeCaptchaErrors::ERROR_PARAM_ENUM, (array_key_exists($field, $this->paramsNames) ? $this->paramsNames[$field] : $field) . ' = ' . $value, $this->errorLang);
300 299
                 }
301 300
                 $params[$this->paramsNames[$field]] = $value;
302 301
             }
@@ -360,7 +359,7 @@  discard block
 block discarded – undo
360 359
             foreach ($data as $key => $value) {
361 360
                 $uri[] = "$key=$value";
362 361
             }
363
-            $url .= '?'.implode('&', $uri);
362
+            $url .= '?' . implode('&', $uri);
364 363
         }
365 364
         curl_setopt($ch, CURLOPT_URL, $url);
366 365
         if (!$isJson && version_compare(PHP_VERSION, '5.5.0') >= 0 && version_compare(PHP_VERSION, '7.0') < 0 && defined('CURLOPT_SAFE_UPLOAD')) {
@@ -378,7 +377,7 @@  discard block
 block discarded – undo
378 377
             curl_setopt($ch, CURLOPT_HTTPHEADER, [
379 378
                 'Content-Type: application/json; charset=utf-8',
380 379
                 'Accept: application/json',
381
-                'Content-Length: '.strlen($data),
380
+                'Content-Length: ' . strlen($data),
382 381
             ]);
383 382
         }
384 383
         $result = curl_exec($ch);
Please login to merge, or discard this patch.
tests/wiki.php 2 patches
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -24,23 +24,23 @@
 block discarded – undo
24 24
 
25 25
 foreach (['ru', 'en'] as $lang) {
26 26
     foreach ([
27
-                 new \jumper423\decaptcha\services\RuCaptcha([]),
28
-                 new \jumper423\decaptcha\services\RuCaptchaReCaptcha([]),
29
-                 new \jumper423\decaptcha\services\RuCaptchaInstruction([]),
30
-                 new \jumper423\decaptcha\services\RuCaptchaGrid([]),
31
-                 new \jumper423\decaptcha\services\RuCaptchaClick([]),
32
-                 new \jumper423\decaptcha\services\TwoCaptcha([]),
33
-                 new \jumper423\decaptcha\services\TwoCaptchaReCaptcha([]),
34
-                 new \jumper423\decaptcha\services\TwoCaptchaInstruction([]),
35
-                 new \jumper423\decaptcha\services\TwoCaptchaGrid([]),
36
-                 new \jumper423\decaptcha\services\TwoCaptchaClick([]),
37
-                 new \jumper423\decaptcha\services\Anticaptcha([]),
38
-                 new \jumper423\decaptcha\services\AnticaptchaReCaptcha([]),
39
-                 new \jumper423\decaptcha\services\AnticaptchaReCaptchaProxeless([]),
40
-                 new \jumper423\decaptcha\services\Captcha24([]),
41
-                 new \jumper423\decaptcha\services\Pixodrom([]),
42
-                 new \jumper423\decaptcha\services\Ripcaptcha([]),
43
-             ] as $class) {
27
+                    new \jumper423\decaptcha\services\RuCaptcha([]),
28
+                    new \jumper423\decaptcha\services\RuCaptchaReCaptcha([]),
29
+                    new \jumper423\decaptcha\services\RuCaptchaInstruction([]),
30
+                    new \jumper423\decaptcha\services\RuCaptchaGrid([]),
31
+                    new \jumper423\decaptcha\services\RuCaptchaClick([]),
32
+                    new \jumper423\decaptcha\services\TwoCaptcha([]),
33
+                    new \jumper423\decaptcha\services\TwoCaptchaReCaptcha([]),
34
+                    new \jumper423\decaptcha\services\TwoCaptchaInstruction([]),
35
+                    new \jumper423\decaptcha\services\TwoCaptchaGrid([]),
36
+                    new \jumper423\decaptcha\services\TwoCaptchaClick([]),
37
+                    new \jumper423\decaptcha\services\Anticaptcha([]),
38
+                    new \jumper423\decaptcha\services\AnticaptchaReCaptcha([]),
39
+                    new \jumper423\decaptcha\services\AnticaptchaReCaptchaProxeless([]),
40
+                    new \jumper423\decaptcha\services\Captcha24([]),
41
+                    new \jumper423\decaptcha\services\Pixodrom([]),
42
+                    new \jumper423\decaptcha\services\Ripcaptcha([]),
43
+                ] as $class) {
44 44
         $tt = $class->getWiki($lang);
45 45
         $tt->save();
46 46
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__.'/../vendor/autoload.php';
3
+include_once __DIR__ . '/../vendor/autoload.php';
4 4
 
5 5
 $mainWiki = new \jumper423\decaptcha\core\DeCaptchaWikiMain(new \jumper423\decaptcha\services\RuCaptcha([]));
6 6
 foreach (['ru', 'en'] as $lang) {
Please login to merge, or discard this patch.
src/core/DeCaptchaWiki.php 3 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -519,14 +519,14 @@
 block discarded – undo
519 519
         $str .= "+ [{$this->getText(['slug', 'menu', 'another'])}](../blob/master/docs/".$this->getFileName($this->lang == 'ru' ? 'en' : 'ru').')'.PHP_EOL;
520 520
         $str .= "+ {$this->getText(['slug', 'menu', 'anchor'])}".PHP_EOL;
521 521
         foreach ([
522
-                     ['slug', 'link'],
523
-                     ['slug', 'service', 'desc'],
524
-                     ['slug', 'price'],
525
-                     ['slug', 'recognize', 'desc'],
526
-                     ['install'],
527
-                     ['example'],
528
-                     ['slug', 'fields', 'desc'],
529
-                 ] as $anchor) {
522
+                        ['slug', 'link'],
523
+                        ['slug', 'service', 'desc'],
524
+                        ['slug', 'price'],
525
+                        ['slug', 'recognize', 'desc'],
526
+                        ['install'],
527
+                        ['example'],
528
+                        ['slug', 'fields', 'desc'],
529
+                    ] as $anchor) {
530 530
             $str .= "  + [{$this->getText($anchor)}](#".implode('-', explode(' ', $this->getText($anchor))).')'.PHP_EOL;
531 531
         }
532 532
         if ($this->getText(['menu', 'from_service'])) {
Please login to merge, or discard this patch.
Doc Comments   +11 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@  discard block
 block discarded – undo
14 14
     protected $class;
15 15
     protected $lang = 'en';
16 16
 
17
+    /**
18
+     * @param string $lang
19
+     */
17 20
     public function setLang($lang)
18 21
     {
19 22
         $this->lang = $lang;
@@ -312,10 +315,10 @@  discard block
 block discarded – undo
312 315
     }
313 316
 
314 317
     /**
315
-     * @param string|array $name
318
+     * @param string[] $name
316 319
      * @param string       $separator
317 320
      *
318
-     * @return string|array
321
+     * @return string
319 322
      */
320 323
     public function getText($name, $separator = '; ')
321 324
     {
@@ -541,6 +544,9 @@  discard block
 block discarded – undo
541 544
         return $str;
542 545
     }
543 546
 
547
+    /**
548
+     * @param string $keyMask
549
+     */
544 550
     protected function getNameConst($keyMask, $value)
545 551
     {
546 552
         $class = $this->class;
@@ -578,6 +584,9 @@  discard block
 block discarded – undo
578 584
         return $str;
579 585
     }
580 586
 
587
+    /**
588
+     * @param string $lang
589
+     */
581 590
     public function getFileName($lang = null)
582 591
     {
583 592
         if (is_null($lang)) {
Please login to merge, or discard this patch.
Spacing   +141 added lines, -141 removed lines patch added patch discarded remove patch
@@ -29,211 +29,211 @@  discard block
 block discarded – undo
29 29
             'recognize_file'                            => true,
30 30
             'recognize_data_file'                       => 'http://site.com/captcha.jpg',
31 31
             'recognize_data'                            => [],
32
-            'field_main_name_'.$class::ACTION_FIELD_KEY => [
32
+            'field_main_name_' . $class::ACTION_FIELD_KEY => [
33 33
                 'ru' => 'Ключ',
34 34
                 'en' => 'Key',
35 35
             ],
36
-            'field_main_desc_'.$class::ACTION_FIELD_KEY => [
36
+            'field_main_desc_' . $class::ACTION_FIELD_KEY => [
37 37
                 'ru' => 'Ключ от учетной записи',
38 38
                 'en' => 'Key account',
39 39
             ],
40
-            'field_main_name_'.$class::ACTION_FIELD_LANGUAGE => [
40
+            'field_main_name_' . $class::ACTION_FIELD_LANGUAGE => [
41 41
                 'ru' => 'Язык',
42 42
                 'en' => 'Language',
43 43
             ],
44
-            'field_main_desc_'.$class::ACTION_FIELD_LANGUAGE => [
44
+            'field_main_desc_' . $class::ACTION_FIELD_LANGUAGE => [
45 45
                 'ru' => 'На каком языке текст на капче',
46 46
                 'en' => 'What language the text on the captcha',
47 47
             ],
48
-            'field_main_name_'.$class::ACTION_FIELD_FILE => [
48
+            'field_main_name_' . $class::ACTION_FIELD_FILE => [
49 49
                 'ru' => 'Картинка',
50 50
                 'en' => 'Picture',
51 51
             ],
52
-            'field_main_desc_'.$class::ACTION_FIELD_FILE => [
52
+            'field_main_desc_' . $class::ACTION_FIELD_FILE => [
53 53
                 'ru' => 'Путь на файл с картинкой или ссылка на него',
54 54
                 'en' => 'The path to the picture file or link to it',
55 55
             ],
56
-            'field_main_name_'.$class::ACTION_FIELD_PHRASE => [
56
+            'field_main_name_' . $class::ACTION_FIELD_PHRASE => [
57 57
                 'ru' => 'Несколько слов',
58 58
                 'en' => 'A few words',
59 59
             ],
60
-            'field_main_desc_'.$class::ACTION_FIELD_PHRASE => [
60
+            'field_main_desc_' . $class::ACTION_FIELD_PHRASE => [
61 61
                 'ru' => 'Работник должен ввести текст с одним или несколькими пробелами',
62 62
                 'en' => 'The worker must enter text with one or more spaces',
63 63
             ],
64
-            'field_main_name_'.$class::ACTION_FIELD_REGSENSE => [
64
+            'field_main_name_' . $class::ACTION_FIELD_REGSENSE => [
65 65
                 'ru' => 'Регистр',
66 66
                 'en' => 'Register',
67 67
             ],
68
-            'field_main_desc_'.$class::ACTION_FIELD_REGSENSE => [
68
+            'field_main_desc_' . $class::ACTION_FIELD_REGSENSE => [
69 69
                 'ru' => 'Работник должен ввести ответ с учетом регистра',
70 70
                 'en' => 'The worker must enter the answer case sensitive',
71 71
             ],
72
-            'field_main_name_'.$class::ACTION_FIELD_NUMERIC => [
72
+            'field_main_name_' . $class::ACTION_FIELD_NUMERIC => [
73 73
                 'ru' => 'Символы',
74 74
                 'en' => 'Characters',
75 75
             ],
76
-            'field_main_desc_'.$class::ACTION_FIELD_NUMERIC => [
76
+            'field_main_desc_' . $class::ACTION_FIELD_NUMERIC => [
77 77
                 'ru' => 'Какие символы используется в капче',
78 78
                 'en' => 'What are the symbols used in captcha',
79 79
             ],
80
-            'field_main_name_'.$class::ACTION_FIELD_CALC => [
80
+            'field_main_name_' . $class::ACTION_FIELD_CALC => [
81 81
                 'ru' => 'Вычисление',
82 82
                 'en' => 'Calculation',
83 83
             ],
84
-            'field_main_desc_'.$class::ACTION_FIELD_CALC => [
84
+            'field_main_desc_' . $class::ACTION_FIELD_CALC => [
85 85
                 'ru' => 'На капче изображенно математичекая выражение и её необходимо решить',
86 86
                 'en' => 'The captcha shows matematicheskaya expression and must be addressed',
87 87
             ],
88
-            'field_main_name_'.$class::ACTION_FIELD_MIN_LEN => [
88
+            'field_main_name_' . $class::ACTION_FIELD_MIN_LEN => [
89 89
                 'ru' => 'Длина min',
90 90
                 'en' => 'Length min',
91 91
             ],
92
-            'field_main_desc_'.$class::ACTION_FIELD_MIN_LEN => [
92
+            'field_main_desc_' . $class::ACTION_FIELD_MIN_LEN => [
93 93
                 'ru' => 'Минимальная длина капчи',
94 94
                 'en' => 'The minimum length of captcha',
95 95
             ],
96
-            'field_main_name_'.$class::ACTION_FIELD_MAX_LEN => [
96
+            'field_main_name_' . $class::ACTION_FIELD_MAX_LEN => [
97 97
                 'ru' => 'Длина max',
98 98
                 'en' => 'Length max',
99 99
             ],
100
-            'field_main_desc_'.$class::ACTION_FIELD_MAX_LEN => [
100
+            'field_main_desc_' . $class::ACTION_FIELD_MAX_LEN => [
101 101
                 'ru' => 'Максимальная длина капчи',
102 102
                 'en' => 'The maximum length of the captcha',
103 103
             ],
104
-            'field_main_name_'.$class::ACTION_FIELD_QUESTION => [
104
+            'field_main_name_' . $class::ACTION_FIELD_QUESTION => [
105 105
                 'ru' => 'Вопрос',
106 106
                 'en' => 'Question',
107 107
             ],
108
-            'field_main_desc_'.$class::ACTION_FIELD_QUESTION => [
108
+            'field_main_desc_' . $class::ACTION_FIELD_QUESTION => [
109 109
                 'ru' => 'На изображении задан вопрос, работник должен написать ответ',
110 110
                 'en' => 'The image asked, the employee must write the answer',
111 111
             ],
112
-            'field_main_name_'.$class::ACTION_FIELD_IS_RUSSIAN => [
112
+            'field_main_name_' . $class::ACTION_FIELD_IS_RUSSIAN => [
113 113
                 'ru' => 'Кириллица',
114 114
                 'en' => 'Cyrillic',
115 115
             ],
116
-            'field_main_desc_'.$class::ACTION_FIELD_IS_RUSSIAN => [
116
+            'field_main_desc_' . $class::ACTION_FIELD_IS_RUSSIAN => [
117 117
                 'ru' => 'На изображении присутствуют русские символы',
118 118
                 'en' => 'In the image there are Russian characters',
119 119
             ],
120
-            'field_main_name_'.$class::ACTION_FIELD_LANGUAGE => [
120
+            'field_main_name_' . $class::ACTION_FIELD_LANGUAGE => [
121 121
                 'ru' => 'Язык',
122 122
                 'en' => 'Language',
123 123
             ],
124
-            'field_main_desc_'.$class::ACTION_FIELD_LANGUAGE => [
124
+            'field_main_desc_' . $class::ACTION_FIELD_LANGUAGE => [
125 125
                 'ru' => 'Символы какого языка размещенны на капче',
126 126
                 'en' => 'The symbols of the language posted on the captcha',
127 127
             ],
128
-            'field_main_name_'.$class::ACTION_FIELD_HEADER_ACAO => [
128
+            'field_main_name_' . $class::ACTION_FIELD_HEADER_ACAO => [
129 129
                 'ru' => 'Кросс-доменный',
130 130
                 'en' => 'Cross-domain',
131 131
             ],
132
-            'field_main_desc_'.$class::ACTION_FIELD_HEADER_ACAO => [
132
+            'field_main_desc_' . $class::ACTION_FIELD_HEADER_ACAO => [
133 133
                 'ru' => 'Необходимо для кросс-доменных AJAX запросов в браузерных приложениях.',
134 134
                 'en' => 'Need for cross-domain AJAX requests in browser-based applications.',
135 135
             ],
136
-            'field_main_name_'.$class::ACTION_FIELD_INSTRUCTIONS => [
136
+            'field_main_name_' . $class::ACTION_FIELD_INSTRUCTIONS => [
137 137
                 'ru' => 'Инструкция',
138 138
                 'en' => 'Manual',
139 139
             ],
140
-            'field_main_desc_'.$class::ACTION_FIELD_INSTRUCTIONS => [
140
+            'field_main_desc_' . $class::ACTION_FIELD_INSTRUCTIONS => [
141 141
                 'ru' => 'Текстовая капча или инструкция для прохождения капчи.',
142 142
                 'en' => 'Text captcha or manual to pass the captcha.',
143 143
             ],
144
-            'field_main_name_'.$class::ACTION_FIELD_PINGBACK => [
144
+            'field_main_name_' . $class::ACTION_FIELD_PINGBACK => [
145 145
                 'ru' => 'Ответ на',
146 146
                 'en' => 'Response to',
147 147
             ],
148
-            'field_main_desc_'.$class::ACTION_FIELD_PINGBACK => [
148
+            'field_main_desc_' . $class::ACTION_FIELD_PINGBACK => [
149 149
                 'ru' => 'Указание для сервера, что после распознания изображения, нужно отправить ответ на указанный адрес.',
150 150
                 'en' => 'Note to server, after recognizing the image, you need to send a reply to the specified address.',
151 151
             ],
152
-            'field_main_name_'.$class::ACTION_FIELD_LABEL => [
152
+            'field_main_name_' . $class::ACTION_FIELD_LABEL => [
153 153
                 'ru' => 'От куда',
154 154
                 'en' => 'From where',
155 155
             ],
156
-            'field_main_desc_'.$class::ACTION_FIELD_LABEL => [
156
+            'field_main_desc_' . $class::ACTION_FIELD_LABEL => [
157 157
                 'ru' => 'Пояснение от куда пришла капча ("vk", "google", "recaptcha", "yandex", "mailru", "yahoo" и т.д.).',
158 158
                 'en' => 'Clarification from where came the captcha ("vk", "google", "recaptcha", "yandex", "Google", "yahoo", etc.).',
159 159
             ],
160
-            'field_main_name_'.$class::ACTION_FIELD_PAGEURL => [
160
+            'field_main_name_' . $class::ACTION_FIELD_PAGEURL => [
161 161
                 'ru' => 'Адрес',
162 162
                 'en' => 'Link',
163 163
             ],
164
-            'field_main_desc_'.$class::ACTION_FIELD_PAGEURL => [
164
+            'field_main_desc_' . $class::ACTION_FIELD_PAGEURL => [
165 165
                 'ru' => 'Адрес страницы на которой решается капча.',
166 166
                 'en' => 'The address of the page where the captcha is solved.',
167 167
             ],
168
-            'field_main_name_'.$class::ACTION_FIELD_GOOGLEKEY => [
168
+            'field_main_name_' . $class::ACTION_FIELD_GOOGLEKEY => [
169 169
                 'ru' => 'Google key',
170 170
                 'en' => 'Google key',
171 171
             ],
172
-            'field_main_desc_'.$class::ACTION_FIELD_GOOGLEKEY => [
172
+            'field_main_desc_' . $class::ACTION_FIELD_GOOGLEKEY => [
173 173
                 'ru' => 'Ключ-индентификатор рекапчи на целевой странице. <div class="g-recaptcha" data-sitekey="ВОТ_ЭТОТ"></div>',
174 174
                 'en' => 'Key-the identifier of the recaptcha on the landing page. <div class="g-recaptcha" data-sitekey="THIS"></div>',
175 175
             ],
176
-            'field_main_name_'.$class::ACTION_FIELD_GOOGLETOKEN => [
176
+            'field_main_name_' . $class::ACTION_FIELD_GOOGLETOKEN => [
177 177
                 'ru' => 'Google token',
178 178
                 'en' => 'Google token',
179 179
             ],
180
-            'field_main_desc_'.$class::ACTION_FIELD_GOOGLETOKEN => [
180
+            'field_main_desc_' . $class::ACTION_FIELD_GOOGLETOKEN => [
181 181
                 'ru' => 'Секретный токен для предыдущей версии рекапчи. В большинстве случаев сайты используют новую версию и этот токен не требуется. Секретный токен генерируется на сервере Google и вставляется на страницу в атрибуте data-stoken. Выглядит это примерно так: <script type="text/javascript" src="...." data-type="normal"  data-ray="..." async data-sitekey="..." data-stoken="ВОТ_ЭТОТ"></script> Токен действует пару минут после генерации, затем нужно снова зайти на страницу и получить его.',
182 182
                 'en' => 'The secret token for the previous version of recaptcha. In most cases, sites use the new version and this token is not required. The secret token is generated on a Google server and inserted into the page in the attribute data-stoken. It looks like this: <script type="text/javascript" src="...." data-type="normal" data-ray="..." async data-sitekey="..." data-stoken="THIS"></script> the Token is valid a few minutes after generation, then you need to go back to the page and get it.',
183 183
             ],
184
-            'field_main_name_'.$class::ACTION_FIELD_PROXYTYPE => [
184
+            'field_main_name_' . $class::ACTION_FIELD_PROXYTYPE => [
185 185
                 'ru' => 'Тип прокси',
186 186
                 'en' => 'The proxy type',
187 187
             ],
188
-            'field_main_desc_'.$class::ACTION_FIELD_PROXYTYPE => [
188
+            'field_main_desc_' . $class::ACTION_FIELD_PROXYTYPE => [
189 189
                 'ru' => 'Тип прокси (http, socks4, ...)',
190 190
                 'en' => 'The proxy type (http, socks4, ...)',
191 191
             ],
192
-            'field_main_name_'.$class::ACTION_FIELD_PROXY => [
192
+            'field_main_name_' . $class::ACTION_FIELD_PROXY => [
193 193
                 'ru' => 'Адрес прокси',
194 194
                 'en' => 'The proxy address',
195 195
             ],
196
-            'field_main_desc_'.$class::ACTION_FIELD_PROXY => [
196
+            'field_main_desc_' . $class::ACTION_FIELD_PROXY => [
197 197
                 'ru' => 'IP адрес прокси ipv4/ipv6.',
198 198
                 'en' => 'IP address of the proxy ipv4/ipv6.',
199 199
             ],
200
-            'field_main_name_'.$class::ACTION_FIELD_PROXYPORT => [
200
+            'field_main_name_' . $class::ACTION_FIELD_PROXYPORT => [
201 201
                 'ru' => 'Порт прокси',
202 202
                 'en' => 'Proxy port',
203 203
             ],
204
-            'field_main_desc_'.$class::ACTION_FIELD_PROXYPORT => [
204
+            'field_main_desc_' . $class::ACTION_FIELD_PROXYPORT => [
205 205
                 'ru' => 'Порт прокси.',
206 206
                 'en' => 'Proxy port.',
207 207
             ],
208
-            'field_main_name_'.$class::ACTION_FIELD_PROXYLOGIN => [
208
+            'field_main_name_' . $class::ACTION_FIELD_PROXYLOGIN => [
209 209
                 'ru' => 'Логин прокси',
210 210
                 'en' => 'Login proxy',
211 211
             ],
212
-            'field_main_desc_'.$class::ACTION_FIELD_PROXYLOGIN => [
212
+            'field_main_desc_' . $class::ACTION_FIELD_PROXYLOGIN => [
213 213
                 'ru' => 'Логин от прокси-сервера.',
214 214
                 'en' => 'Login from proxy server.',
215 215
             ],
216
-            'field_main_name_'.$class::ACTION_FIELD_PROXYPASS => [
216
+            'field_main_name_' . $class::ACTION_FIELD_PROXYPASS => [
217 217
                 'ru' => 'Пароль прокси',
218 218
                 'en' => 'Password proxy',
219 219
             ],
220
-            'field_main_desc_'.$class::ACTION_FIELD_PROXYPASS => [
220
+            'field_main_desc_' . $class::ACTION_FIELD_PROXYPASS => [
221 221
                 'ru' => 'Пароль от прокси-сервера.',
222 222
                 'en' => 'The password for the proxy server.',
223 223
             ],
224
-            'field_main_name_'.$class::ACTION_FIELD_USERAGENT => [
224
+            'field_main_name_' . $class::ACTION_FIELD_USERAGENT => [
225 225
                 'ru' => 'User-Agent браузера',
226 226
                 'en' => 'User-Agent browser',
227 227
             ],
228
-            'field_main_desc_'.$class::ACTION_FIELD_USERAGENT => [
228
+            'field_main_desc_' . $class::ACTION_FIELD_USERAGENT => [
229 229
                 'ru' => 'User-Agent браузера, используемый в эмуляции. Необходимо использовать подпись современного браузера, иначе Google будет возвращать ошибку, требуя обновить браузер.',
230 230
                 'en' => 'User-Agent browser used in emulation. You must use the signature modern browser, otherwise Google will return an error requiring you to upgrade your browser.',
231 231
             ],
232
-            'field_main_name_'.$class::ACTION_FIELD_COOKIES => [
232
+            'field_main_name_' . $class::ACTION_FIELD_COOKIES => [
233 233
                 'ru' => 'Куки',
234 234
                 'en' => 'Cookies',
235 235
             ],
236
-            'field_main_desc_'.$class::ACTION_FIELD_COOKIES => [
236
+            'field_main_desc_' . $class::ACTION_FIELD_COOKIES => [
237 237
                 'ru' => 'Дополнительные cookies которые мы должны использовать во время взаимодействия с целевой страницей.',
238 238
                 'en' => 'Additional cookies which we should use during the interaction with the target page.',
239 239
             ],
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
      */
405 405
     public function getText($name, $separator = '; ')
406 406
     {
407
-        $getResult = function ($name, $texts) {
407
+        $getResult = function($name, $texts) {
408 408
             if (is_array($name)) {
409 409
                 $name = implode('_', $name);
410 410
             }
@@ -433,17 +433,17 @@  discard block
 block discarded – undo
433 433
 
434 434
     protected function viewInstall()
435 435
     {
436
-        $str = "{$this->getText(['install', 'preferred'])} [composer](http://getcomposer.org/download/).".PHP_EOL;
436
+        $str = "{$this->getText(['install', 'preferred'])} [composer](http://getcomposer.org/download/)." . PHP_EOL;
437 437
         $str .= PHP_EOL;
438
-        $str .= "{$this->getText(['install', 'start'])}".PHP_EOL;
439
-        $str .= '```'.PHP_EOL;
440
-        $str .= 'php composer.phar require --prefer-dist jumper423/decaptcha "*"'.PHP_EOL;
441
-        $str .= '```'.PHP_EOL;
442
-        $str .= "{$this->getText(['install', 'add'])}".PHP_EOL;
443
-        $str .= '```'.PHP_EOL;
444
-        $str .= '"jumper423/decaptcha": "*"'.PHP_EOL;
445
-        $str .= '```'.PHP_EOL;
446
-        $str .= "{$this->getText(['install', 'add', 'file'])} `composer.json`.".PHP_EOL;
438
+        $str .= "{$this->getText(['install', 'start'])}" . PHP_EOL;
439
+        $str .= '```' . PHP_EOL;
440
+        $str .= 'php composer.phar require --prefer-dist jumper423/decaptcha "*"' . PHP_EOL;
441
+        $str .= '```' . PHP_EOL;
442
+        $str .= "{$this->getText(['install', 'add'])}" . PHP_EOL;
443
+        $str .= '```' . PHP_EOL;
444
+        $str .= '"jumper423/decaptcha": "*"' . PHP_EOL;
445
+        $str .= '```' . PHP_EOL;
446
+        $str .= "{$this->getText(['install', 'add', 'file'])} `composer.json`." . PHP_EOL;
447 447
 
448 448
         return $str;
449 449
     }
@@ -453,12 +453,12 @@  discard block
 block discarded – undo
453 453
         $class = $this->class;
454 454
         $rc = (new \ReflectionClass($class));
455 455
 
456
-        $str = "####{$this->getText(['example', 'initialization'])}".PHP_EOL;
457
-        $str .= "{$this->getText(['example', 'initialization', 'desc'])}".PHP_EOL;
458
-        $str .= '```'.PHP_EOL;
459
-        $str .= "use {$rc->getName()};".PHP_EOL;
460
-        $str .= ''.PHP_EOL;
461
-        $str .= '$captcha = new '.$rc->getShortName().'(['.PHP_EOL;
456
+        $str = "####{$this->getText(['example', 'initialization'])}" . PHP_EOL;
457
+        $str .= "{$this->getText(['example', 'initialization', 'desc'])}" . PHP_EOL;
458
+        $str .= '```' . PHP_EOL;
459
+        $str .= "use {$rc->getName()};" . PHP_EOL;
460
+        $str .= '' . PHP_EOL;
461
+        $str .= '$captcha = new ' . $rc->getShortName() . '([' . PHP_EOL;
462 462
         foreach ($this->texts['constructor_data'] as $key => $val) {
463 463
             $str .= "    {$rc->getShortName()}::{$this->getNameConst('ACTION_FIELD_', $key)} => ";
464 464
             if (is_string($val)) {
@@ -466,14 +466,14 @@  discard block
 block discarded – undo
466 466
             } else {
467 467
                 $str .= "{$val}";
468 468
             }
469
-            $str .= ','.PHP_EOL;
469
+            $str .= ',' . PHP_EOL;
470 470
         }
471
-        $str .= ']);'.PHP_EOL;
472
-        $str .= '```'.PHP_EOL;
471
+        $str .= ']);' . PHP_EOL;
472
+        $str .= '```' . PHP_EOL;
473 473
 
474
-        $str .= "####{$this->getText(['example', 'recognize'])}".PHP_EOL;
475
-        $str .= "{$this->getText(['example', 'recognize', 'desc'])}".PHP_EOL;
476
-        $str .= '```'.PHP_EOL;
474
+        $str .= "####{$this->getText(['example', 'recognize'])}" . PHP_EOL;
475
+        $str .= "{$this->getText(['example', 'recognize', 'desc'])}" . PHP_EOL;
476
+        $str .= '```' . PHP_EOL;
477 477
         $str .= 'if ($captcha->recognize(';
478 478
         if ($this->texts['recognize_file']) {
479 479
             $str .= "'{$this->getText(['recognize', 'data', 'file'])}'";
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
             if ($this->texts['recognize_file']) {
483 483
                 $str .= ', ';
484 484
             }
485
-            $str .= '['.PHP_EOL;
485
+            $str .= '[' . PHP_EOL;
486 486
             foreach ($this->texts['recognize_data'] as $key => $val) {
487 487
                 $str .= "    {$rc->getShortName()}::{$this->getNameConst('ACTION_FIELD_', $key)} => ";
488 488
                 if (is_string($val)) {
@@ -490,46 +490,46 @@  discard block
 block discarded – undo
490 490
                 } else {
491 491
                     $str .= "{$val}";
492 492
                 }
493
-                $str .= ','.PHP_EOL;
493
+                $str .= ',' . PHP_EOL;
494 494
             }
495 495
             $str .= ']';
496 496
         }
497
-        $str .= ')) {'.PHP_EOL;
498
-        $str .= '    $code = $captcha->getCode();'.PHP_EOL;
499
-        $str .= '} else {'.PHP_EOL;
500
-        $str .= '    $error = $captcha->getError();'.PHP_EOL;
501
-        $str .= '}'.PHP_EOL;
502
-        $str .= '```'.PHP_EOL;
497
+        $str .= ')) {' . PHP_EOL;
498
+        $str .= '    $code = $captcha->getCode();' . PHP_EOL;
499
+        $str .= '} else {' . PHP_EOL;
500
+        $str .= '    $error = $captcha->getError();' . PHP_EOL;
501
+        $str .= '}' . PHP_EOL;
502
+        $str .= '```' . PHP_EOL;
503 503
 
504 504
         if (in_array('notTrue', get_class_methods($class))) {
505
-            $str .= "####{$this->getText(['example', 'nottrue'])}".PHP_EOL;
506
-            $str .= "{$this->getText(['example', 'nottrue', 'desc'])}".PHP_EOL;
507
-            $str .= '```'.PHP_EOL;
508
-            $str .= '$captcha->notTrue();'.PHP_EOL;
509
-            $str .= '```'.PHP_EOL;
505
+            $str .= "####{$this->getText(['example', 'nottrue'])}" . PHP_EOL;
506
+            $str .= "{$this->getText(['example', 'nottrue', 'desc'])}" . PHP_EOL;
507
+            $str .= '```' . PHP_EOL;
508
+            $str .= '$captcha->notTrue();' . PHP_EOL;
509
+            $str .= '```' . PHP_EOL;
510 510
         }
511 511
 
512 512
         if (in_array('getBalance', get_class_methods($class))) {
513
-            $str .= "####{$this->getText(['example', 'balance'])}".PHP_EOL;
514
-            $str .= '```'.PHP_EOL;
515
-            $str .= '$balance = $captcha->getBalance();'.PHP_EOL;
516
-            $str .= '```'.PHP_EOL;
513
+            $str .= "####{$this->getText(['example', 'balance'])}" . PHP_EOL;
514
+            $str .= '```' . PHP_EOL;
515
+            $str .= '$balance = $captcha->getBalance();' . PHP_EOL;
516
+            $str .= '```' . PHP_EOL;
517 517
         }
518 518
 
519 519
         if ($this->getText(['example', 'error', 'lang', 'if'])) {
520
-            $str .= "####{$this->getText(['example', 'error', 'lang'])}".PHP_EOL;
521
-            $str .= "{$this->getText(['example', 'error', 'lang', 'desc'])}".PHP_EOL;
522
-            $str .= '```'.PHP_EOL;
523
-            $str .= '$captcha->setErrorLang(\jumper423\decaptcha\core\DeCaptchaErrors::LANG_RU);'.PHP_EOL;
524
-            $str .= '```'.PHP_EOL;
520
+            $str .= "####{$this->getText(['example', 'error', 'lang'])}" . PHP_EOL;
521
+            $str .= "{$this->getText(['example', 'error', 'lang', 'desc'])}" . PHP_EOL;
522
+            $str .= '```' . PHP_EOL;
523
+            $str .= '$captcha->setErrorLang(\jumper423\decaptcha\core\DeCaptchaErrors::LANG_RU);' . PHP_EOL;
524
+            $str .= '```' . PHP_EOL;
525 525
         }
526 526
 
527
-        $str .= "####{$this->getText(['example', 'error', 'interception'])}".PHP_EOL;
528
-        $str .= "{$this->getText(['example', 'error', 'interception', 'desc'])}".PHP_EOL;
529
-        $str .= '```'.PHP_EOL;
530
-        $str .= '$captcha->setCauseAnError(true);'.PHP_EOL;
527
+        $str .= "####{$this->getText(['example', 'error', 'interception'])}" . PHP_EOL;
528
+        $str .= "{$this->getText(['example', 'error', 'interception', 'desc'])}" . PHP_EOL;
529
+        $str .= '```' . PHP_EOL;
530
+        $str .= '$captcha->setCauseAnError(true);' . PHP_EOL;
531 531
         $str .= PHP_EOL;
532
-        $str .= 'try {'.PHP_EOL;
532
+        $str .= 'try {' . PHP_EOL;
533 533
         $str .= '    $captcha->recognize(';
534 534
         if ($this->texts['recognize_file']) {
535 535
             $str .= "'{$this->getText(['recognize', 'data', 'file'])}'";
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
             if ($this->texts['recognize_file']) {
539 539
                 $str .= ', ';
540 540
             }
541
-            $str .= '['.PHP_EOL;
541
+            $str .= '[' . PHP_EOL;
542 542
             foreach ($this->texts['recognize_data'] as $key => $val) {
543 543
                 $str .= "       {$rc->getShortName()}::{$this->getNameConst('ACTION_FIELD_', $key)} => ";
544 544
                 if (is_string($val)) {
@@ -546,16 +546,16 @@  discard block
 block discarded – undo
546 546
                 } else {
547 547
                     $str .= "{$val}";
548 548
                 }
549
-                $str .= ','.PHP_EOL;
549
+                $str .= ',' . PHP_EOL;
550 550
             }
551 551
             $str .= '    ]';
552 552
         }
553
-        $str .= ');'.PHP_EOL;
554
-        $str .= '    $code = $captcha->getCode();'.PHP_EOL;
555
-        $str .= '} catch (\jumper423\decaptcha\core\DeCaptchaErrors $e) {'.PHP_EOL;
556
-        $str .= '    ...'.PHP_EOL;
557
-        $str .= '}'.PHP_EOL;
558
-        $str .= '```'.PHP_EOL;
553
+        $str .= ');' . PHP_EOL;
554
+        $str .= '    $code = $captcha->getCode();' . PHP_EOL;
555
+        $str .= '} catch (\jumper423\decaptcha\core\DeCaptchaErrors $e) {' . PHP_EOL;
556
+        $str .= '    ...' . PHP_EOL;
557
+        $str .= '}' . PHP_EOL;
558
+        $str .= '```' . PHP_EOL;
559 559
 
560 560
         return $str;
561 561
     }
@@ -563,8 +563,8 @@  discard block
 block discarded – undo
563 563
     protected function viewFields()
564 564
     {
565 565
         $class = $this->class;
566
-        $str = " {$this->getText(['table', 'th', 'name'])} | {$this->getText(['table', 'th', 'code'])} | {$this->getText(['table', 'th', 'type'])} | {$this->getText(['table', 'th', 'req'])} | {$this->getText(['table', 'th', 'def'])} | {$this->getText(['table', 'th', 'enum'])} | {$this->getText(['table', 'th', 'desc'])} ".PHP_EOL;
567
-        $str .= ' --- | --- | --- | --- | --- | --- | --- '.PHP_EOL;
566
+        $str = " {$this->getText(['table', 'th', 'name'])} | {$this->getText(['table', 'th', 'code'])} | {$this->getText(['table', 'th', 'type'])} | {$this->getText(['table', 'th', 'req'])} | {$this->getText(['table', 'th', 'def'])} | {$this->getText(['table', 'th', 'enum'])} | {$this->getText(['table', 'th', 'desc'])} " . PHP_EOL;
567
+        $str .= ' --- | --- | --- | --- | --- | --- | --- ' . PHP_EOL;
568 568
         foreach ($this->class->actions[$class::ACTION_RECOGNIZE][$class::ACTION_FIELDS] as $param => $setting) {
569 569
             if (array_key_exists($class::ACTION_FIELDS, $setting) && is_array($setting[$class::ACTION_FIELDS])) {
570 570
                 foreach ($setting[$class::ACTION_FIELDS] as $param1 => $setting1) {
@@ -588,9 +588,9 @@  discard block
 block discarded – undo
588 588
         $class = $this->class;
589 589
         $str = " {$this->getText(['field', 'main', 'name', $param])} |";
590 590
         $str .= " {$this->getNameConst('ACTION_FIELD_', $param)} |";
591
-        $str .= ' '.substr($this->getNameConst('PARAM_FIELD_TYPE_', $setting[$class::PARAM_SLUG_TYPE]), 17).' |';
592
-        $str .= ' '.(array_key_exists($class::PARAM_SLUG_REQUIRE, $setting) ? '+' : '-').' |';
593
-        $str .= ' '.(array_key_exists($class::PARAM_SLUG_DEFAULT, $setting) ? $setting[$class::PARAM_SLUG_DEFAULT] : '').' |';
591
+        $str .= ' ' . substr($this->getNameConst('PARAM_FIELD_TYPE_', $setting[$class::PARAM_SLUG_TYPE]), 17) . ' |';
592
+        $str .= ' ' . (array_key_exists($class::PARAM_SLUG_REQUIRE, $setting) ? '+' : '-') . ' |';
593
+        $str .= ' ' . (array_key_exists($class::PARAM_SLUG_DEFAULT, $setting) ? $setting[$class::PARAM_SLUG_DEFAULT] : '') . ' |';
594 594
         $str .= " {$this->getText(['field', 'slug', $class::PARAM_SLUG_ENUM, $param])} |";
595 595
         $str .= " {$this->getText(['field', 'main', 'desc', $param])} |";
596 596
         $str .= PHP_EOL;
@@ -600,9 +600,9 @@  discard block
 block discarded – undo
600 600
 
601 601
     protected function viewMenu()
602 602
     {
603
-        $str = "+ [{$this->getText(['slug', 'menu', 'main'])}](../docs/README-{$this->lang}.md)".PHP_EOL;
604
-        $str .= "+ [{$this->getText(['slug', 'menu', 'another'])}](../docs/".$this->getFileName($this->lang == 'ru' ? 'en' : 'ru').')'.PHP_EOL;
605
-        $str .= "+ {$this->getText(['slug', 'menu', 'anchor'])}".PHP_EOL;
603
+        $str = "+ [{$this->getText(['slug', 'menu', 'main'])}](../docs/README-{$this->lang}.md)" . PHP_EOL;
604
+        $str .= "+ [{$this->getText(['slug', 'menu', 'another'])}](../docs/" . $this->getFileName($this->lang == 'ru' ? 'en' : 'ru') . ')' . PHP_EOL;
605
+        $str .= "+ {$this->getText(['slug', 'menu', 'anchor'])}" . PHP_EOL;
606 606
         foreach ([
607 607
                      ['slug', 'link'],
608 608
                      ['slug', 'service', 'desc'],
@@ -612,14 +612,14 @@  discard block
 block discarded – undo
612 612
                      ['example'],
613 613
                      ['slug', 'fields', 'desc'],
614 614
                  ] as $anchor) {
615
-            $str .= "  + [{$this->getText($anchor)}](#".implode('-', explode(' ', ($this->lang === 'en' ? mb_strtolower($this->getText($anchor)) : $this->getText($anchor)))).')'.PHP_EOL;
615
+            $str .= "  + [{$this->getText($anchor)}](#" . implode('-', explode(' ', ($this->lang === 'en' ? mb_strtolower($this->getText($anchor)) : $this->getText($anchor)))) . ')' . PHP_EOL;
616 616
         }
617 617
         if ($this->getText(['menu', 'from_service'])) {
618
-            $str .= "+ {$this->getText(['slug', 'menu', 'from_service'])}".PHP_EOL;
618
+            $str .= "+ {$this->getText(['slug', 'menu', 'from_service'])}" . PHP_EOL;
619 619
             foreach ($this->texts['menu_from_service'] as $fromServiceClass) {
620 620
                 $fromServiceObject = new $fromServiceClass([]);
621 621
                 $fromServiceObjectWiki = $fromServiceObject->getWiki($this->lang);
622
-                $str .= "  + [{$fromServiceObjectWiki->getText(['service', 'name'])}](../docs/{$fromServiceObjectWiki->getFileName()})".PHP_EOL;
622
+                $str .= "  + [{$fromServiceObjectWiki->getText(['service', 'name'])}](../docs/{$fromServiceObjectWiki->getFileName()})" . PHP_EOL;
623 623
             }
624 624
         }
625 625
 
@@ -641,24 +641,24 @@  discard block
 block discarded – undo
641 641
 
642 642
     public function view()
643 643
     {
644
-        $str = $this->getText(['service', 'name']).PHP_EOL;
645
-        $str .= '=============='.PHP_EOL;
646
-        $str .= "###{$this->getText(['slug', 'menu'])}".PHP_EOL;
647
-        $str .= $this->viewMenu().PHP_EOL.PHP_EOL;
648
-        $str .= "###{$this->getText(['slug', 'link'])}".PHP_EOL;
649
-        $str .= "[{$this->getText(['slug', 'link', 'to_service'])} {$this->getText(['service', 'name'])}]({$this->getText(['service', 'href'])})".PHP_EOL.PHP_EOL;
650
-        $str .= "###{$this->getText(['slug', 'service', 'desc'])}".PHP_EOL;
651
-        $str .= "{$this->getText(['service', 'desc'])}".PHP_EOL.PHP_EOL;
652
-        $str .= "###{$this->getText(['slug', 'price'])}".PHP_EOL;
653
-        $str .= "{$this->getText(['recognize', 'price'])}".PHP_EOL.PHP_EOL;
654
-        $str .= "###{$this->getText(['slug', 'recognize', 'desc'])}".PHP_EOL;
655
-        $str .= "{$this->getText(['recognize', 'desc'])}".PHP_EOL.PHP_EOL;
656
-        $str .= "###{$this->getText(['install'])}".PHP_EOL;
657
-        $str .= "{$this->viewInstall()}".PHP_EOL.PHP_EOL;
658
-        $str .= "###{$this->getText(['example'])}".PHP_EOL;
659
-        $str .= "{$this->viewExamples()}".PHP_EOL.PHP_EOL;
660
-        $str .= "###{$this->getText(['slug', 'fields', 'desc'])}".PHP_EOL;
661
-        $str .= $this->viewFields().PHP_EOL;
644
+        $str = $this->getText(['service', 'name']) . PHP_EOL;
645
+        $str .= '==============' . PHP_EOL;
646
+        $str .= "###{$this->getText(['slug', 'menu'])}" . PHP_EOL;
647
+        $str .= $this->viewMenu() . PHP_EOL . PHP_EOL;
648
+        $str .= "###{$this->getText(['slug', 'link'])}" . PHP_EOL;
649
+        $str .= "[{$this->getText(['slug', 'link', 'to_service'])} {$this->getText(['service', 'name'])}]({$this->getText(['service', 'href'])})" . PHP_EOL . PHP_EOL;
650
+        $str .= "###{$this->getText(['slug', 'service', 'desc'])}" . PHP_EOL;
651
+        $str .= "{$this->getText(['service', 'desc'])}" . PHP_EOL . PHP_EOL;
652
+        $str .= "###{$this->getText(['slug', 'price'])}" . PHP_EOL;
653
+        $str .= "{$this->getText(['recognize', 'price'])}" . PHP_EOL . PHP_EOL;
654
+        $str .= "###{$this->getText(['slug', 'recognize', 'desc'])}" . PHP_EOL;
655
+        $str .= "{$this->getText(['recognize', 'desc'])}" . PHP_EOL . PHP_EOL;
656
+        $str .= "###{$this->getText(['install'])}" . PHP_EOL;
657
+        $str .= "{$this->viewInstall()}" . PHP_EOL . PHP_EOL;
658
+        $str .= "###{$this->getText(['example'])}" . PHP_EOL;
659
+        $str .= "{$this->viewExamples()}" . PHP_EOL . PHP_EOL;
660
+        $str .= "###{$this->getText(['slug', 'fields', 'desc'])}" . PHP_EOL;
661
+        $str .= $this->viewFields() . PHP_EOL;
662 662
 
663 663
         return $str;
664 664
     }
@@ -670,11 +670,11 @@  discard block
 block discarded – undo
670 670
         }
671 671
         $class = $this->class;
672 672
 
673
-        return (new \ReflectionClass($class))->getShortName().'-'.$lang.'.md';
673
+        return (new \ReflectionClass($class))->getShortName() . '-' . $lang . '.md';
674 674
     }
675 675
 
676 676
     public function save()
677 677
     {
678
-        file_put_contents(__DIR__.'/../../docs/'.$this->getFileName(), $this->view());
678
+        file_put_contents(__DIR__ . '/../../docs/' . $this->getFileName(), $this->view());
679 679
     }
680 680
 }
Please login to merge, or discard this patch.
src/core/DeCaptchaWikiMain.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -119,12 +119,12 @@
 block discarded – undo
119 119
     {
120 120
         $str = "+ [{$this->getText(['slug', 'menu', 'another'])}](../docs/" . $this->getFileName($this->lang == 'ru' ? 'en' : 'ru') . ')' . PHP_EOL;
121 121
         foreach ([
122
-                     ['slug', 'menu', 'desc'],
123
-                     ['slug', 'menu', 'features'],
124
-                     ['slug', 'menu', 'services'],
125
-                     ['install'],
126
-                     ['example'],
127
-                 ] as $anchor) {
122
+                        ['slug', 'menu', 'desc'],
123
+                        ['slug', 'menu', 'features'],
124
+                        ['slug', 'menu', 'services'],
125
+                        ['install'],
126
+                        ['example'],
127
+                    ] as $anchor) {
128 128
             $str .= "+ [{$this->getText($anchor)}](#" . implode('-', explode(' ', $this->getText($anchor))) . ')' . PHP_EOL;
129 129
         }
130 130
 
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public function getText($name, $separator = '; ')
105 105
     {
106
-        $getResult = function ($name, $texts) {
106
+        $getResult = function($name, $texts) {
107 107
             if (is_array($name)) {
108 108
                 $name = implode('_', $name);
109 109
             }
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
     protected function viewMenu($master = '')
134 134
     {
135
-        $str = "+ [{$this->getText(['slug', 'menu', 'another'])}](../{$master}docs/".$this->getFileName($this->lang == 'ru' ? 'en' : 'ru').')'.PHP_EOL;
135
+        $str = "+ [{$this->getText(['slug', 'menu', 'another'])}](../{$master}docs/" . $this->getFileName($this->lang == 'ru' ? 'en' : 'ru') . ')' . PHP_EOL;
136 136
         foreach ([
137 137
                      ['slug', 'menu', 'desc'],
138 138
                      ['slug', 'menu', 'features'],
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
                      ['install'],
141 141
                      ['example'],
142 142
                  ] as $anchor) {
143
-            $str .= "+ [{$this->getText($anchor)}](#".implode('-', explode(' ', ($this->lang === 'en' ? mb_strtolower($this->getText($anchor)) : $this->getText($anchor)))).')'.PHP_EOL;
143
+            $str .= "+ [{$this->getText($anchor)}](#" . implode('-', explode(' ', ($this->lang === 'en' ? mb_strtolower($this->getText($anchor)) : $this->getText($anchor)))) . ')' . PHP_EOL;
144 144
         }
145 145
 
146 146
         return $str;
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
             }
157 157
             $tt[$class->getWiki($this->lang)->getFileName()] = true;
158 158
             $fromServiceObjectWiki = $class->getWiki($this->lang);
159
-            $str .= "+ [{$fromServiceObjectWiki->getText(['service', 'name'])}](../{$master}docs/{$fromServiceObjectWiki->getFileName()})".PHP_EOL;
159
+            $str .= "+ [{$fromServiceObjectWiki->getText(['service', 'name'])}](../{$master}docs/{$fromServiceObjectWiki->getFileName()})" . PHP_EOL;
160 160
         }
161 161
 
162 162
         return $str;
@@ -164,25 +164,25 @@  discard block
 block discarded – undo
164 164
 
165 165
     public function view($master = '')
166 166
     {
167
-        $str = $this->viewHeader().PHP_EOL;
167
+        $str = $this->viewHeader() . PHP_EOL;
168 168
 
169
-        $str .= "###{$this->getText(['slug', 'menu'])}".PHP_EOL;
170
-        $str .= $this->viewMenu($master).PHP_EOL.PHP_EOL;
169
+        $str .= "###{$this->getText(['slug', 'menu'])}" . PHP_EOL;
170
+        $str .= $this->viewMenu($master) . PHP_EOL . PHP_EOL;
171 171
 
172
-        $str .= "###{$this->getText(['slug', 'menu', 'desc'])}".PHP_EOL;
173
-        $str .= $this->getText(['readme', 'main', 'desc']).PHP_EOL.PHP_EOL;
172
+        $str .= "###{$this->getText(['slug', 'menu', 'desc'])}" . PHP_EOL;
173
+        $str .= $this->getText(['readme', 'main', 'desc']) . PHP_EOL . PHP_EOL;
174 174
 
175
-        $str .= "###{$this->getText(['slug', 'menu', 'features'])}".PHP_EOL;
176
-        $str .= $this->getText(['readme', 'main', 'features'], PHP_EOL).PHP_EOL.PHP_EOL;
175
+        $str .= "###{$this->getText(['slug', 'menu', 'features'])}" . PHP_EOL;
176
+        $str .= $this->getText(['readme', 'main', 'features'], PHP_EOL) . PHP_EOL . PHP_EOL;
177 177
 
178
-        $str .= "###{$this->getText(['slug', 'menu', 'services'])}".PHP_EOL;
179
-        $str .= "{$this->getText(['readme', 'main', 'services'])}".PHP_EOL.PHP_EOL;
180
-        $str .= "{$this->viewServices($master)}".PHP_EOL.PHP_EOL;
178
+        $str .= "###{$this->getText(['slug', 'menu', 'services'])}" . PHP_EOL;
179
+        $str .= "{$this->getText(['readme', 'main', 'services'])}" . PHP_EOL . PHP_EOL;
180
+        $str .= "{$this->viewServices($master)}" . PHP_EOL . PHP_EOL;
181 181
 
182
-        $str .= "###{$this->getText(['install'])}".PHP_EOL;
183
-        $str .= "{$this->viewInstall()}".PHP_EOL.PHP_EOL;
184
-        $str .= "###{$this->getText(['example'])}".PHP_EOL;
185
-        $str .= "{$this->viewExamples()}".PHP_EOL.PHP_EOL;
182
+        $str .= "###{$this->getText(['install'])}" . PHP_EOL;
183
+        $str .= "{$this->viewInstall()}" . PHP_EOL . PHP_EOL;
184
+        $str .= "###{$this->getText(['example'])}" . PHP_EOL;
185
+        $str .= "{$this->viewExamples()}" . PHP_EOL . PHP_EOL;
186 186
 
187 187
         return $str;
188 188
     }
@@ -193,12 +193,12 @@  discard block
 block discarded – undo
193 193
             $lang = $this->lang;
194 194
         }
195 195
 
196
-        return 'README-'.$lang.'.md';
196
+        return 'README-' . $lang . '.md';
197 197
     }
198 198
 
199 199
     public function save()
200 200
     {
201
-        file_put_contents(__DIR__.'/../../docs/'.$this->getFileName(), $this->view());
202
-        file_put_contents(__DIR__.'/../../README.md', $this->view('master/'));
201
+        file_put_contents(__DIR__ . '/../../docs/' . $this->getFileName(), $this->view());
202
+        file_put_contents(__DIR__ . '/../../README.md', $this->view('master/'));
203 203
     }
204 204
 }
Please login to merge, or discard this patch.
src/services/RuCaptchaGrid.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     }
69 69
 
70 70
     /**
71
-     * @return array
71
+     * @return string
72 72
      */
73 73
     public function getCode()
74 74
     {
Please login to merge, or discard this patch.