Completed
Push — master ( 325d09...af44b2 )
by Ma
02:19
created
src/Api/Format/Xml.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      * Get Header
26 26
      *
27 27
      * @return string
28
-    */
28
+     */
29 29
     public function getHeader()
30 30
     {
31 31
         return 'Content-Type: application/xml';
Please login to merge, or discard this patch.
src/Api/Format/Json.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      * Get Header
26 26
      *
27 27
      * @return string
28
-    */
28
+     */
29 29
     public function getHeader()
30 30
     {
31 31
         return 'Content-Type: application/xml';
Please login to merge, or discard this patch.
src/Api/ErrorHandler.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
19 19
     public function errorHandler($level, $message, $file) {
20 20
         $this->logger->addWarning($message);
21 21
         $this->buildErrorMessage('Error occur.');
22
-     }
22
+        }
23 23
 
24 24
     public function exceptionHandler($exception) {
25 25
         $this->logger->addWarning($exception->getMessage());
26 26
         $this->buildErrorMessage('Error occur.');
27
-     }
27
+        }
28 28
 }
29 29
\ No newline at end of file
Please login to merge, or discard this patch.