Passed
Pull Request — master (#111)
by Adam
01:49
created
src/Endpoints/CloudApiBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,6 +70,6 @@
 block discarded – undo
70 70
             );
71 71
         }
72 72
 
73
-        throw new LinkedResourceNotImplementedException($type . ' link not implemented in this SDK. Please file an issue here: https://github.com/typhonius/acquia-php-sdk-v2/issues');
73
+        throw new LinkedResourceNotImplementedException($type.' link not implemented in this SDK. Please file an issue here: https://github.com/typhonius/acquia-php-sdk-v2/issues');
74 74
     }
75 75
 }
Please login to merge, or discard this patch.
src/Response/GenericResponse.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@
 block discarded – undo
17 17
     public function getLink(string $name)
18 18
     {
19 19
         if (!property_exists($this, 'links')) {
20
-            throw new NoLinkedResourceException('No linked resources for ' . get_called_class());
20
+            throw new NoLinkedResourceException('No linked resources for '.get_called_class());
21 21
         } elseif (!property_exists($this->links, $name)) {
22
-            throw new LinkedResourceNotFoundException('No property exists for ' . $name . '. Available links are ' . implode(' ', array_keys((array) $this->links)));
22
+            throw new LinkedResourceNotFoundException('No property exists for '.$name.'. Available links are '.implode(' ', array_keys((array) $this->links)));
23 23
         }
24 24
 
25 25
         /**
Please login to merge, or discard this patch.