Passed
Push — master ( 13cccd...7cbd95 )
by Giancarlos
02:48
created
src/Report/Filter/ImageFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,6 @@
 block discarded – undo
19 19
     {
20 20
         $content = base64_encode($image);
21 21
 
22
-        return self::IMAGE_EMBED_PART.$content;
22
+        return self::IMAGE_EMBED_PART . $content;
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
src/Report/Filter/ResolveFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             $client->getTipoDoc(),
56 56
             $client->getNumDoc(),
57 57
         ];
58
-        $content = implode('|', $params).'|';
58
+        $content = implode('|', $params) . '|';
59 59
 
60 60
         return $this->getQrImage($content);
61 61
     }
Please login to merge, or discard this patch.
src/Report/HtmlReport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
         if ($directory) {
113 113
             $dirs[] = $directory;
114 114
         }
115
-        $dirs[] = __DIR__.'/Templates';
115
+        $dirs[] = __DIR__ . '/Templates';
116 116
 
117 117
         return $dirs;
118 118
     }
Please login to merge, or discard this patch.