@@ -231,10 +231,10 @@ discard block |
||
231 | 231 | ]; |
232 | 232 | |
233 | 233 | $handle = fopen($filename, 'r'); |
234 | - if (! $handle) { |
|
234 | + if ( ! $handle) { |
|
235 | 235 | throw new MongoGridFSException('could not open file: ' . $filename); |
236 | 236 | } |
237 | - } elseif (! is_resource($filename)) { |
|
237 | + } elseif ( ! is_resource($filename)) { |
|
238 | 238 | throw new \Exception('first argument must be a string or stream resource'); |
239 | 239 | } else { |
240 | 240 | $handle = $filename; |
@@ -245,10 +245,10 @@ discard block |
||
245 | 245 | |
246 | 246 | // Add length and MD5 if they were not present before |
247 | 247 | $update = []; |
248 | - if (! isset($record['length'])) { |
|
248 | + if ( ! isset($record['length'])) { |
|
249 | 249 | $update['length'] = $length; |
250 | 250 | } |
251 | - if (! isset($record['md5'])) { |
|
251 | + if ( ! isset($record['md5'])) { |
|
252 | 252 | $update['md5'] = $this->getMd5ForFile($file['_id']); |
253 | 253 | } |
254 | 254 | |
@@ -270,10 +270,10 @@ discard block |
||
270 | 270 | */ |
271 | 271 | public function storeUpload($name, array $metadata = []) |
272 | 272 | { |
273 | - if (! isset($_FILES[$name]) || $_FILES[$name]['error'] !== UPLOAD_ERR_OK) { |
|
273 | + if ( ! isset($_FILES[$name]) || $_FILES[$name]['error'] !== UPLOAD_ERR_OK) { |
|
274 | 274 | throw new MongoGridFSException("Could not find uploaded file $name"); |
275 | 275 | } |
276 | - if (! isset($_FILES[$name]['tmp_name'])) { |
|
276 | + if ( ! isset($_FILES[$name]['tmp_name'])) { |
|
277 | 277 | throw new MongoGridFSException("Couldn't find tmp_name in the \$_FILES array. Are you sure the upload worked?"); |
278 | 278 | } |
279 | 279 | |
@@ -355,7 +355,7 @@ discard block |
||
355 | 355 | $chunkSize = $record['chunkSize']; |
356 | 356 | |
357 | 357 | rewind($handle); |
358 | - while (! feof($handle)) { |
|
358 | + while ( ! feof($handle)) { |
|
359 | 359 | $data = stream_get_contents($handle, $chunkSize); |
360 | 360 | $this->insertChunk($fileId, $data, $i++); |
361 | 361 | $written += strlen($data); |
@@ -55,7 +55,7 @@ |
||
55 | 55 | */ |
56 | 56 | protected function setWriteConcernFromParameters($wstring, $wtimeout = 0) |
57 | 57 | { |
58 | - if (! is_string($wstring) && ! is_int($wstring)) { |
|
58 | + if ( ! is_string($wstring) && ! is_int($wstring)) { |
|
59 | 59 | trigger_error("w for WriteConcern must be a string or integer", E_WARNING); |
60 | 60 | return false; |
61 | 61 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | public function add($item) |
77 | 77 | { |
78 | 78 | if (is_object($item)) { |
79 | - $item = (array)$item; |
|
79 | + $item = (array) $item; |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | $this->validate($item); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | final public function execute(array $writeOptions = []) |
96 | 96 | { |
97 | 97 | $writeOptions += $this->writeOptions; |
98 | - if (! count($this->items)) { |
|
98 | + if ( ! count($this->items)) { |
|
99 | 99 | return ['ok' => true]; |
100 | 100 | } |
101 | 101 | |
@@ -142,13 +142,13 @@ discard block |
||
142 | 142 | { |
143 | 143 | switch ($this->batchType) { |
144 | 144 | case self::COMMAND_UPDATE: |
145 | - if (! isset($item['q']) || ! isset($item['u'])) { |
|
145 | + if ( ! isset($item['q']) || ! isset($item['u'])) { |
|
146 | 146 | throw new Exception('invalid item'); |
147 | 147 | } |
148 | 148 | break; |
149 | 149 | |
150 | 150 | case self::COMMAND_DELETE: |
151 | - if (! isset($item['q']) || ! isset($item['limit'])) { |
|
151 | + if ( ! isset($item['q']) || ! isset($item['limit'])) { |
|
152 | 152 | throw new Exception('invalid item'); |
153 | 153 | } |
154 | 154 | break; |