@@ -434,7 +434,7 @@ |
||
434 | 434 | { |
435 | 435 | $object = new self(); |
436 | 436 | |
437 | - if (!isset($objectArray['upload_url'])) { |
|
437 | + if ( ! isset($objectArray['upload_url'])) { |
|
438 | 438 | $objectArray['upload_url'] = ''; |
439 | 439 | } |
440 | 440 |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public static function failed(RepositoryResponse $repositoryResponse) |
19 | 19 | { |
20 | - return new self('Failed call: '.$repositoryResponse->getError()->getError()); |
|
20 | + return new self('Failed call: ' . $repositoryResponse->getError()->getError()); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /**+ |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public static function missingIndex($missingIndex) |
29 | 29 | { |
30 | - return new self('Invalid reposnse missing: '.$missingIndex); |
|
30 | + return new self('Invalid reposnse missing: ' . $missingIndex); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |