Completed
Pull Request — master (#17)
by Andreas
02:33
created
src/Renderer/RssRenderer.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 {
37 37
     /**
38 38
      *
39
-     * @param Response $response
39
+     * @param ResponseInterface $response
40 40
      * @param array $data
41 41
      * @param int $status
42 42
      *
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             'uri'   => 'http://andreas.heigl.org',
57 57
         ]);
58 58
         $feed->setDateModified(time());
59
-        if (! isset($data['cfps'])) {
59
+        if (!isset($data['cfps'])) {
60 60
             $data['cfps'] = [];
61 61
         }
62 62
         foreach ($data['cfps'] as $cfp) {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
                 $entry->setContent($cfp['description']);
79 79
 
80 80
                 $feed->addEntry($entry);
81
-            } catch(\Exception $e){
81
+            } catch (\Exception $e) {
82 82
             }
83 83
         }
84 84
 
Please login to merge, or discard this patch.