GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#113)
by
unknown
01:12
created
src/Menu.php 2 patches
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      *
73 73
      * @param array|\Iterator $items
74 74
      * @param callable $callback
75
-     * @param \Spatie\Menu\Menu|null $initial
75
+     * @param null|\self $initial
76 76
      *
77 77
      * @return static
78 78
      */
@@ -560,7 +560,6 @@  discard block
 block discarded – undo
560 560
     /**
561 561
      * Set tag for items wrapper.
562 562
      *
563
-     * @param string|null $wrapperTagName
564 563
      * @return $this
565 564
      */
566 565
     public function withoutWrapperTag()
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 use Spatie\Menu\Traits\Conditions as ConditionsTrait;
12 12
 use Spatie\Menu\Traits\HasHtmlAttributes as HasHtmlAttributesTrait;
13 13
 use Spatie\Menu\Traits\HasParentAttributes as HasParentAttributesTrait;
14
-use Spatie\Menu\Traits\HasTextAttributes as HasAttributesTrait;
15 14
 use Spatie\Menu\Traits\HasPriority as HasPriorityTrait;
15
+use Spatie\Menu\Traits\HasTextAttributes as HasAttributesTrait;
16 16
 use Traversable;
17 17
 
18 18
 class Menu implements Item, Countable, HasHtmlAttributes, HasParentAttributes, IteratorAggregate
Please login to merge, or discard this patch.
src/Traits/Activatable.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Spatie\Menu\ActiveUrlChecker;
6 6
 use Spatie\Menu\ExactUrlChecker;
7
-use Spatie\Url\Url;
8 7
 
9 8
 /**
10 9
  * Expects an `$active` property on the class.
Please login to merge, or discard this patch.
src/Link.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 use Spatie\Menu\Traits\Conditions as ConditionsTrait;
8 8
 use Spatie\Menu\Traits\HasHtmlAttributes as HasHtmlAttributesTrait;
9 9
 use Spatie\Menu\Traits\HasParentAttributes as HasParentAttributesTrait;
10
-use Spatie\Menu\Traits\HasTextAttributes as HasAttributesTrait;
11 10
 use Spatie\Menu\Traits\HasPriority as HasPriorityTrait;
11
+use Spatie\Menu\Traits\HasTextAttributes as HasAttributesTrait;
12 12
 
13 13
 class Link implements Item, HasHtmlAttributes, HasParentAttributes, Activatable
14 14
 {
Please login to merge, or discard this patch.