Completed
Push — master ( 367642...b5a2de )
by Minas
01:34
created
src/Payout.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Seller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Balance.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Action/Direct.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Action/Payment.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Action/AbstractAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/Action/Balance.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,6 +26,6 @@
 block discarded – undo
26 26
             return $uri;
27 27
         }
28 28
 
29
-        return $uri . '/balance/';
29
+        return $uri.'/balance/';
30 30
     }
31 31
 }
Please login to merge, or discard this patch.
src/Transfer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Reversal.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.