Completed
Pull Request — master (#1)
by
unknown
04:43
created
source/Response/AccessControlServerResponse.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             PaReq: %s
73 73
             Terms: %s
74 74
         query:     %s
75
-EOD;
75
+eod;
76 76
         return sprintf($format
77 77
             , $this->getUrl()
78 78
             , $this->getParameters()->getMerchantData()
Please login to merge, or discard this patch.
source/Response/AuthenticateResponse.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
 %s
117 117
     recurring
118 118
 %s
119
-EOD;
119
+eod;
120 120
         return sprintf($format
121 121
             , $this->getId()
122 122
             , json_encode($this->isSuccess())
Please login to merge, or discard this patch.
source/Response/CardResponse.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
         type:       %s
110 110
         exp. month: %s
111 111
         exp. year:  %s
112
-EOD;
112
+eod;
113 113
         return sprintf($format
114 114
             , $this->getLastFour()
115 115
             , $this->getMask()
Please login to merge, or discard this patch.
source/Response/ProcessRecurringResponse.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
     success:        %s
84 84
     card
85 85
 %s
86
-EOD;
86
+eod;
87 87
         return sprintf($format
88 88
             , $this->getId()
89 89
             , json_encode($this->isSuccess())
Please login to merge, or discard this patch.
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.