@@ -25,8 +25,8 @@ discard block |
||
| 25 | 25 | public static function create(array $params) |
| 26 | 26 | { |
| 27 | 27 | throw new Exception\RuntimeException( |
| 28 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 29 | - ' does not support method ' . __METHOD__ |
|
| 28 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 29 | + ' does not support method '.__METHOD__ |
|
| 30 | 30 | ); |
| 31 | 31 | } |
| 32 | 32 | |
@@ -38,8 +38,8 @@ discard block |
||
| 38 | 38 | public static function update($token, array $params) |
| 39 | 39 | { |
| 40 | 40 | throw new Exception\RuntimeException( |
| 41 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 42 | - ' does not support method ' . __METHOD__ |
|
| 41 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 42 | + ' does not support method '.__METHOD__ |
|
| 43 | 43 | ); |
| 44 | 44 | } |
| 45 | 45 | |
@@ -51,8 +51,8 @@ discard block |
||
| 51 | 51 | public static function delete($token, array $params = array()) |
| 52 | 52 | { |
| 53 | 53 | throw new Exception\RuntimeException( |
| 54 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 55 | - ' does not support method ' . __METHOD__ |
|
| 54 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 55 | + ' does not support method '.__METHOD__ |
|
| 56 | 56 | ); |
| 57 | 57 | } |
| 58 | 58 | } |
@@ -39,8 +39,8 @@ |
||
| 39 | 39 | public static function delete($token, array $params = array()) |
| 40 | 40 | { |
| 41 | 41 | throw new Exception\RuntimeException( |
| 42 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 43 | - ' does not support method ' . __METHOD__ |
|
| 42 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 43 | + ' does not support method '.__METHOD__ |
|
| 44 | 44 | ); |
| 45 | 45 | } |
| 46 | 46 | } |
@@ -35,8 +35,8 @@ discard block |
||
| 35 | 35 | public static function create(array $params) |
| 36 | 36 | { |
| 37 | 37 | throw new Exception\RuntimeException( |
| 38 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 39 | - ' does not support method ' . __METHOD__ |
|
| 38 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 39 | + ' does not support method '.__METHOD__ |
|
| 40 | 40 | ); |
| 41 | 41 | } |
| 42 | 42 | |
@@ -48,8 +48,8 @@ discard block |
||
| 48 | 48 | public static function update($token, array $params) |
| 49 | 49 | { |
| 50 | 50 | throw new Exception\RuntimeException( |
| 51 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 52 | - ' does not support method ' . __METHOD__ |
|
| 51 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 52 | + ' does not support method '.__METHOD__ |
|
| 53 | 53 | ); |
| 54 | 54 | } |
| 55 | 55 | |
@@ -61,8 +61,8 @@ discard block |
||
| 61 | 61 | public static function delete($token, array $params = array()) |
| 62 | 62 | { |
| 63 | 63 | throw new Exception\RuntimeException( |
| 64 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 65 | - ' does not support method ' . __METHOD__ |
|
| 64 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 65 | + ' does not support method '.__METHOD__ |
|
| 66 | 66 | ); |
| 67 | 67 | } |
| 68 | 68 | } |
@@ -20,8 +20,8 @@ |
||
| 20 | 20 | |
| 21 | 21 | protected function getResourceUri() |
| 22 | 22 | { |
| 23 | - return $this->apiUri . '/sellers' |
|
| 24 | - . ($this->tokenId ? '/' . $this->tokenId : null) |
|
| 23 | + return $this->apiUri.'/sellers' |
|
| 24 | + . ($this->tokenId ? '/'.$this->tokenId : null) |
|
| 25 | 25 | . '/transfers'; |
| 26 | 26 | } |
| 27 | 27 | } |
@@ -20,8 +20,8 @@ |
||
| 20 | 20 | |
| 21 | 21 | protected function getResourceUri() |
| 22 | 22 | { |
| 23 | - return $this->apiUri . '/payments' |
|
| 24 | - . ($this->tokenId ? '/' . $this->tokenId : null) |
|
| 23 | + return $this->apiUri.'/payments' |
|
| 24 | + . ($this->tokenId ? '/'.$this->tokenId : null) |
|
| 25 | 25 | . '/transfers'; |
| 26 | 26 | } |
| 27 | 27 | } |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | return $this->apiUri |
| 39 | 39 | . '/' |
| 40 | 40 | . $this->resource |
| 41 | - . ($this->tokenId ? '/' . $this->tokenId : null); |
|
| 41 | + . ($this->tokenId ? '/'.$this->tokenId : null); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -26,6 +26,6 @@ |
||
| 26 | 26 | return $uri; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - return $uri . '/balance/'; |
|
| 29 | + return $uri.'/balance/'; |
|
| 30 | 30 | } |
| 31 | 31 | } |
@@ -55,8 +55,8 @@ |
||
| 55 | 55 | public static function delete($token, array $params = array()) |
| 56 | 56 | { |
| 57 | 57 | throw new Exception\RuntimeException( |
| 58 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 59 | - ' does not support method ' . __METHOD__ |
|
| 58 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 59 | + ' does not support method '.__METHOD__ |
|
| 60 | 60 | ); |
| 61 | 61 | } |
| 62 | 62 | } |
@@ -25,8 +25,8 @@ discard block |
||
| 25 | 25 | public static function update($token, array $params) |
| 26 | 26 | { |
| 27 | 27 | throw new Exception\RuntimeException( |
| 28 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 29 | - ' does not support method ' . __METHOD__ |
|
| 28 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 29 | + ' does not support method '.__METHOD__ |
|
| 30 | 30 | ); |
| 31 | 31 | } |
| 32 | 32 | |
@@ -38,8 +38,8 @@ discard block |
||
| 38 | 38 | public static function delete($token, array $params = array()) |
| 39 | 39 | { |
| 40 | 40 | throw new Exception\RuntimeException( |
| 41 | - 'Resource ' . ucfirst(static::RESOURCE_NAME) . |
|
| 42 | - ' does not support method ' . __METHOD__ |
|
| 41 | + 'Resource '.ucfirst(static::RESOURCE_NAME). |
|
| 42 | + ' does not support method '.__METHOD__ |
|
| 43 | 43 | ); |
| 44 | 44 | } |
| 45 | 45 | } |