Completed
Push — master ( 4895be...67409c )
by Oleg
04:41
created
src/Builder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -350,7 +350,7 @@
 block discarded – undo
350 350
     }
351 351
 
352 352
     /**
353
-     * @param $element
353
+     * @param string $element
354 354
      * @return ElementFactory
355 355
      */
356 356
     protected function getFactory($element)
Please login to merge, or discard this patch.
tests/TestCase.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
         }
31 31
     }
32 32
     
33
+    /**
34
+     * @param string $file
35
+     */
33 36
     protected function getStub($file)
34 37
     {
35 38
         return file_get_contents(__DIR__ . '/stub/' . $file);
Please login to merge, or discard this patch.
src/Element/AbstractElement.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @inheritdoc
38
+     * @param string $view
38 39
      */
39 40
     public function setView($view)
40 41
     {
Please login to merge, or discard this patch.
src/Element/Link.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace Malezha\Menu\Element;
3 3
 
4 4
 use Illuminate\Container\Container;
5
-use Illuminate\Http\Request;
6 5
 use Malezha\Menu\Contracts\Attributes;
7 6
 use Malezha\Menu\Contracts\ComparativeUrl;
8 7
 use Malezha\Menu\Contracts\DisplayRule as DisplayRuleInterface;
Please login to merge, or discard this patch.