Completed
Push — master ( 057a93...be1bdd )
by Alex
22s queued 13s
created
src/POData/Readers/Atom/Processors/FeedProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function handleStartAtomLink($attributes)
79 79
     {
80
-        $rel                      = $this->arrayKeyOrDefault(
80
+        $rel = $this->arrayKeyOrDefault(
81 81
             $attributes,
82 82
             ODataConstants::ATOM_LINK_RELATION_ATTRIBUTE_NAME,
83 83
             ''
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     public function handleStartMetadataCount()
96 96
     {
97 97
         $this->enqueueEnd(function () {
98
-            $this->oDataFeed->rowCount =  (int)$this->popCharData();
98
+            $this->oDataFeed->rowCount = (int) $this->popCharData();
99 99
         });
100 100
     }
101 101
 
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
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         if (strtolower($tagNamespace) === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE) &&
46 46
             strtolower($tagName) === strtolower((ODataConstants::ATOM_PROPERTIES_ELEMENT_NAME))
47 47
         ) {
48
-            return ;
48
+            return;
49 49
         }
50 50
         //TODO: this will need to be expanded with opengis namespaces as well when supported
51 51
         assert($tagNamespace === ODataConstants::ODATA_NAMESPACE ||
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         if (strtolower($tagNamespace) === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE) &&
72 72
             strtolower($tagName) === strtolower((ODataConstants::ATOM_PROPERTIES_ELEMENT_NAME))
73 73
         ) {
74
-            return ;
74
+            return;
75 75
         }
76 76
         // Pops a complex object off the stack
77 77
         $prop                                                  = $this->properties->pop();
Please login to merge, or discard this patch.