Passed
Pull Request — master (#198)
by Alex
04:10
created
src/Query/LaravelExpressionProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
         };
59 59
         $this->functionDescriptionParsers[ODataConstants::STRFUN_ENDSWITH] = function ($params) {
60 60
             return '(strcmp(substr(' . $params[0] . ', strlen(' . $params[0] . ') - strlen(' . $params[1] . ')), '
61
-                   . $params[1] . ') === 0)';
61
+                    . $params[1] . ') === 0)';
62 62
         };
63 63
         $this->functionDescriptionParsers[ODataConstants::STRFUN_INDEXOF] = function ($params) {
64 64
             return 'strpos(' . $params[0] . ', ' . $params[1] . ')';
Please login to merge, or discard this patch.
src/Serialisers/SerialiserLowLevelWriters.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
         $kVal     = $typeKind;
72 72
         if (!(ResourceTypeKind::PRIMITIVE() == $kVal || ResourceTypeKind::COMPLEX() == $kVal)) {
73 73
             $msg = '$bagItemResourceTypeKind != ResourceTypeKind::PRIMITIVE'
74
-                   . ' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX';
74
+                    . ' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX';
75 75
             throw new InvalidOperationException($msg);
76 76
         }
77 77
         if (null == $result) {
Please login to merge, or discard this patch.