Passed
Push — master ( 9f8b05...782ba1 )
by Maxime
05:41
created
src/Extractors/PhpCode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
 
77 77
         return preg_replace_callback(
78 78
             '/\\\(n|r|t|v|e|f|\$|"|\\\|x[0-9A-Fa-f]{1,2}|u{[0-9a-f]{1,6}}|[0-7]{1,3})/',
79
-            function ($match) {
79
+            function($match) {
80 80
                 switch ($match[1][0]) {
81 81
                     case 'n':
82 82
                         return "\n";
Please login to merge, or discard this patch.
src/Translations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -427,7 +427,7 @@
 block discarded – undo
427 427
      */
428 428
     public function countTranslated()
429 429
     {
430
-        $callback = function (Translation $v) {
430
+        $callback = function(Translation $v) {
431 431
             return ($v->hasTranslation()) ? $v->getTranslation() : null;
432 432
         };
433 433
 
Please login to merge, or discard this patch.