@@ -75,7 +75,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | } |