Passed
Push — master ( 0074a9...40aac8 )
by Jakub
01:56
created
src/RssResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Nexendrie\Rss;
5 5
 
Please login to merge, or discard this patch.
src/Bridges/NetteDI/RssExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Nexendrie\Rss\Bridges\NetteDI;
5 5
 
Please login to merge, or discard this patch.
src/Collection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Nexendrie\Rss;
5 5
 
Please login to merge, or discard this patch.
src/RssChannelItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Nexendrie\Rss;
5 5
 
Please login to merge, or discard this patch.
src/Generator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Nexendrie\Rss;
5 5
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     return $description;
113 113
   }
114 114
   
115
-  protected function writeProperty(\SimpleXMLElement &$channel, string $property): void {
115
+  protected function writeProperty(\SimpleXMLElement & $channel, string $property): void {
116 116
     if(isset($this->$property) AND $this->$property !== "") {
117 117
       $channel->channel->{$property}[0][0] = $this->$property;
118 118
     }
Please login to merge, or discard this patch.