Completed
Push — master ( be72f0...b6ccc1 )
by Alex
17s queued 14s
created
src/POData/Readers/Atom/Processors/FeedProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     public function handleStartMetadataCount()
76 76
     {
77 77
         $this->enqueueEnd(function () {
78
-            $this->oDataFeed->rowCount =  (int)$this->popCharData();
78
+            $this->oDataFeed->rowCount = (int) $this->popCharData();
79 79
         });
80 80
     }
81 81
 
Please login to merge, or discard this patch.
src/POData/Readers/Atom/Processors/Entry/PropertyProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
             strtolower($tagNamespace) === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE) &&
38 38
             strtolower($tagName) === strtolower((ODataConstants::ATOM_PROPERTIES_ELEMENT_NAME))
39 39
         ) {
40
-            return ;
40
+            return;
41 41
         }
42 42
         //TODO: this will need to be expanded with opengis namespaces as well when supported
43 43
         assert($tagNamespace === ODataConstants::ODATA_NAMESPACE ||
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
             strtolower($tagNamespace) === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE) &&
61 61
             strtolower($tagName) === strtolower((ODataConstants::ATOM_PROPERTIES_ELEMENT_NAME))
62 62
         ) {
63
-            return ;
63
+            return;
64 64
         }
65 65
         // Pops a complex object off the stack
66 66
         $prop                                                  = $this->properties->pop();
Please login to merge, or discard this patch.