Completed
Push — master ( 4c26e4...a6409e )
by Francesco
02:34
created
src/entity/UploadJobStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -434,7 +434,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/exceptions/UploadException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.