Completed
Pull Request — master (#231)
by
unknown
02:44
created
src/CopyRequest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         $this->fp = fopen($this->destination, 'wb');
76 76
         if (!$this->fp) {
77 77
             throw new FetchException(
78
-                'The file could not be written to ' . $this->destination
78
+                'The file could not be written to '.$this->destination
79 79
             );
80 80
         }
81 81
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         $this->destination = $destination;
93 93
         if (is_dir($destination)) {
94 94
             throw new FetchException(
95
-                'The file could not be written to ' . $destination . '. Directory exists.'
95
+                'The file could not be written to '.$destination.'. Directory exists.'
96 96
             );
97 97
         }
98 98
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         if (!file_exists($targetdir)) {
106 106
             if (!mkdir($targetdir, 0775, true)) {
107 107
                 throw new FetchException(
108
-                    'The file could not be written to ' . $fileName
108
+                    'The file could not be written to '.$fileName
109 109
                 );
110 110
             }
111 111
         }
Please login to merge, or discard this patch.