Passed
Branch master (16b2eb)
by Jakub
02:30
created
src/Generator.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
   }
114 114
   
115 115
   protected function writeProperty(\SimpleXMLElement &$channel, string $property): void {
116
-    if(isset($this->$property) AND $this->$property !== "") {
116
+    if(isset($this->$property) and $this->$property !== "") {
117 117
       $channel->channel->{$property}[0][0] = $this->$property;
118 118
     }
119 119
   }
Please login to merge, or discard this patch.