@@ -14,9 +14,9 @@ discard block |
||
| 14 | 14 | public static function create(array $params) |
| 15 | 15 | { |
| 16 | 16 | throw new Exception\RuntimeException( |
| 17 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 18 | - ' does not support method ' . __METHOD__ |
|
| 19 | - ); } |
|
| 17 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 18 | + ' does not support method '.__METHOD__ |
|
| 19 | + ); } |
|
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | 22 | * Not available for this resource. |
@@ -26,8 +26,8 @@ discard block |
||
| 26 | 26 | public static function delete($token, array $params = array()) |
| 27 | 27 | { |
| 28 | 28 | throw new Exception\RuntimeException( |
| 29 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 30 | - ' does not support method ' . __METHOD__ |
|
| 29 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 30 | + ' does not support method '.__METHOD__ |
|
| 31 | 31 | ); |
| 32 | 32 | } |
| 33 | 33 | |
@@ -41,8 +41,8 @@ discard block |
||
| 41 | 41 | public static function update($token, array $params) |
| 42 | 42 | { |
| 43 | 43 | throw new Exception\RuntimeException( |
| 44 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 45 | - ' does not support method ' . __METHOD__ |
|
| 44 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 45 | + ' does not support method '.__METHOD__ |
|
| 46 | 46 | ); |
| 47 | 47 | } |
| 48 | 48 | |