Completed
Push — master ( 1fde5e...65944d )
by Dmitry
02:10
created
src/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         if ($this->verbose)
24 24
         {
25
-            echo date("d/m/y H:i:s") . ' ['.$level.'] ' . $message . PHP_EOL;
25
+            echo date("d/m/y H:i:s") . ' [' . $level . '] ' . $message . PHP_EOL;
26 26
         }
27 27
     }
28 28
 }
29 29
\ No newline at end of file
Please login to merge, or discard this patch.
src/GenericClient.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         $content = '';
108 108
 
109 109
         while (!$file->eof()) {
110
-            $content .=  $file->fgets();
110
+            $content .= $file->fgets();
111 111
         }
112 112
 
113 113
         return $this->recognize($content, $extra);
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
         if ($this->logger === null)
247 247
         {
248 248
             $defaultLogger = new Logger;
249
-            $defaultLogger->verbose =& $this->verbose;
249
+            $defaultLogger->verbose = & $this->verbose;
250 250
 
251 251
             $this->setLogger($defaultLogger);
252 252
         }
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author Dmitry Gladyshev <[email protected]>
4
- */
3
+     * @author Dmitry Gladyshev <[email protected]>
4
+     */
5 5
 
6 6
 namespace Rucaptcha;
7 7
 
Please login to merge, or discard this patch.
src/ConfigurableTrait.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author Dmitry Gladyshev <[email protected]>
4
- */
3
+     * @author Dmitry Gladyshev <[email protected]>
4
+     */
5 5
 
6 6
 namespace Rucaptcha;
7 7
 
Please login to merge, or discard this patch.
src/Exception/InvalidArgumentException.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author Dmitry Gladyshev <[email protected]>
4
- */
3
+     * @author Dmitry Gladyshev <[email protected]>
4
+     */
5 5
 
6 6
 namespace Rucaptcha;
7 7
 
Please login to merge, or discard this patch.
src/Client.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author Dmitry Gladyshev <[email protected]>
4
- */
3
+     * @author Dmitry Gladyshev <[email protected]>
4
+     */
5 5
 
6 6
 namespace Rucaptcha;
7 7
 
Please login to merge, or discard this patch.
src/Extra.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author Dmitry Gladyshev <[email protected]>
4
- */
3
+     * @author Dmitry Gladyshev <[email protected]>
4
+     */
5 5
 
6 6
 namespace Rucaptcha;
7 7
 
Please login to merge, or discard this patch.