Completed
Pull Request — master (#269)
by Christopher
14:37
created
src/POData/ObjectModel/CynicDeserialiser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
             $hasExpanded = null !== $link->getExpandedResult();
92 92
 
93 93
             $isEntry = ($link->getExpandedResult() ? $link->getExpandedResult()->getData() : null)
94
-                       instanceof ODataEntry;
94
+                        instanceof ODataEntry;
95 95
 
96 96
             if ($hasExpanded) {
97 97
                 if ($isEntry) {
Please login to merge, or discard this patch.
src/POData/ObjectModel/ODataLink.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -224,7 +224,7 @@
 block discarded – undo
224 224
     {
225 225
         return !array_reduce(
226 226
             ['isExpanded', 'isCollection', 'expandedResult', 'title', 'type', 'name', 'url'],
227
-            function ($carry, $value){
227
+            function ($carry, $value) {
228 228
                 return $carry || isset($this->{$value});
229 229
             }, false);
230 230
     }
Please login to merge, or discard this patch.