Passed
Push — master ( c6992b...62cc34 )
by Kanstantsin
02:33
created
src/saver/Factory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      */
68 68
     protected static function getTempFile(string $content)
69 69
     {
70
-        $stream = fopen('php://memory','rb+');
70
+        $stream = fopen('php://memory', 'rb+');
71 71
         fwrite($stream, $content); // write file into stream
72 72
         rewind($stream); // reset stream pointer to start
73 73
 
Please login to merge, or discard this patch.
src/formatter/preview/Preview.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      * @var array
24 24
      */
25 25
     public static $iconPreviewArray = [
26
-        'file' => ['txt', 'doc',],
26
+        'file' => ['txt', 'doc', ],
27 27
     ];
28 28
 
29 29
     /**
Please login to merge, or discard this patch.
src/model/ExternalCacheStatefulFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,6 +85,6 @@
 block discarded – undo
85 85
             return true;
86 86
         }
87 87
 
88
-        return (bool)\call_user_func($this->saveCachedStateCallback, $this);
88
+        return (bool) \call_user_func($this->saveCachedStateCallback, $this);
89 89
     }
90 90
 }
91 91
\ No newline at end of file
Please login to merge, or discard this patch.