Completed
Pull Request — master (#57)
by Alex
04:04
created
src/Controllers/ODataController.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     }
68 68
 
69 69
     /**
70
-     * @return mixed
70
+     * @return boolean
71 71
      */
72 72
     protected function getIsDumping()
73 73
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             // iff XTest header is set, containing class and method name
40 40
             // dump outgoing odataResponse, metadata, and incoming request
41 41
             $xTest = $request->header('XTest');
42
-            $xTest = (null !== $xTest) ? $xTest : $request->method() . ";" . str_replace("/", "-", $request->path());
42
+            $xTest = (null !== $xTest) ? $xTest : $request->method().";".str_replace("/", "-", $request->path());
43 43
             if (null != $xTest) {
44 44
                 $cerealRequest = serialize($request);
45 45
                 $cerealMeta = serialize($meta);
Please login to merge, or discard this patch.