Completed
Push — master ( 51d929...c470ca )
by Michal
03:05
created
src/StringReader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
      * @return array Array of Integers
73 73
      */
74 74
     public function readintarray($unpack, $pos, $count) {
75
-        return unpack($unpack . $count, $this->read($pos, 4 * $count));
75
+        return unpack($unpack.$count, $this->read($pos, 4 * $count));
76 76
     }
77 77
 
78 78
 }
Please login to merge, or discard this patch.
src/Translator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
                     $res .= ') : (';
151 151
                     break;
152 152
                 case ';':
153
-                    $res .= str_repeat(')', $p) . ';';
153
+                    $res .= str_repeat(')', $p).';';
154 154
                     $p = 0;
155 155
                     break;
156 156
                 default:
Please login to merge, or discard this patch.
src/Loader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      */
82 82
     public static function load_functions()
83 83
     {
84
-        require_once __DIR__ . '/functions.php';
84
+        require_once __DIR__.'/functions.php';
85 85
     }
86 86
 
87 87
     /**
Please login to merge, or discard this patch.