@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | // Hey fucko, ya missed something. |
114 | 114 | if (!empty($missingArguments)) { |
115 | - throw new Exception('Missing the arguments: ' . implode(', ', $missingArguments) . '.'); |
|
115 | + throw new Exception('Missing the arguments: '.implode(', ', $missingArguments).'.'); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | // How do I hold all these arguments? |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | } |
122 | 122 | |
123 | 123 | // Finally, make the damn FOAAS call. |
124 | - return $this->callFoaas('/' . $method . '/' . implode('/', $args)); |
|
124 | + return $this->callFoaas('/'.$method.'/'.implode('/', $args)); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |