Completed
Pull Request — master (#1)
by
unknown
04:43
created
source/Response/ProcessResponse.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
 %s
135 135
     recurring
136 136
 %s
137
-EOD;
137
+eod;
138 138
         return sprintf($format
139 139
             , $this->getId()
140 140
             , json_encode($this->isSuccess())
Please login to merge, or discard this patch.
source/Response/RecurringResponse.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         $format = <<<'EOD'
69 69
         frequency:  %s
70 70
         endsAt:     %s
71
-EOD;
71
+eod;
72 72
         return sprintf($format
73 73
             , $this->getFrequency()
74 74
             , gmdate(DateTime::ISO8601, $this->getEndsAt()));
Please login to merge, or discard this patch.
source/Response/SuccessResponse.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         $format = <<<'EOD'
55 55
 response:
56 56
     success: %s
57
-EOD;
57
+eod;
58 58
         return sprintf($format, json_encode($this->isSuccess()));
59 59
     }
60 60
 }
Please login to merge, or discard this patch.
source/Response/TokenResponse.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
     expiresAt: %s
85 85
     card
86 86
 %s
87
-EOD;
87
+eod;
88 88
         return sprintf($format
89 89
             , $this->getId()
90 90
             , gmdate(DateTime::ISO8601, $this->getExpiresAt())
Please login to merge, or discard this patch.
source/Response/UserResponse.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         $format = <<<'EOD'
55 55
 user's data
56 56
     id: %s
57
-EOD;
57
+eod;
58 58
         return sprintf($format, $this->getId());
59 59
     }
60 60
 }
Please login to merge, or discard this patch.