Completed
Pull Request — master (#104)
by
unknown
01:11
created
src/Feed.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Feed;
4 4
 
5
-use Illuminate\Support\Arr;
5
+use Illuminate\Contracts\Support\Responsable;
6 6
 use Illuminate\Http\Response;
7
+use Illuminate\Support\Arr;
7 8
 use Illuminate\Support\Collection;
8 9
 use Spatie\Feed\Exceptions\InvalidFeedItem;
9
-use Illuminate\Contracts\Support\Responsable;
10 10
 
11 11
 class Feed implements Responsable
12 12
 {
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
     /** @var \Illuminate\Support\Collection */
32 32
     protected $items;
33 33
 
34
+    /**
35
+     * @param string $name
36
+     */
34 37
     public function __construct($name, $title, $url, $resolver, $view, $description, $language)
35 38
     {
36 39
         $this->name = $name;
Please login to merge, or discard this patch.