Completed
Push — master ( 7bdd8d...a18ca2 )
by Oleg
04:39
created
src/Factory/AbstractElementFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Illuminate\Contracts\Container\Container;
6 6
 use Malezha\Menu\Contracts\Element;
7 7
 use Malezha\Menu\Contracts\ElementFactory;
8
-use Malezha\Menu\Traits\DisplayRule;
9 8
 use Opis\Closure\SerializableClosure;
10 9
 
11 10
 /**
Please login to merge, or discard this patch.
views/elements/submenu.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php if ($canDisplay) :?>
2
-<li<?=$attributes;?>>
3
-    <a href="<?=$url;?>"<?=$linkAttributes;?>><?=$title;?></a>
4
-    <?=$builder->render($renderView);?>
2
+<li<?=$attributes; ?>>
3
+    <a href="<?=$url; ?>"<?=$linkAttributes; ?>><?=$title; ?></a>
4
+    <?=$builder->render($renderView); ?>
5 5
 </li>
6
-<?php endif;?>
6
+<?php endif; ?>
Please login to merge, or discard this patch.
views/elements/link.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,3 +1,3 @@
 block discarded – undo
1 1
 <?php if ($canDisplay) :?>
2
-<li<?=$attributes;?>><a href="<?=$url;?>"<?=$linkAttributes;?>><?=$title;?></a></li>
3
-<?php endif;?>
2
+<li<?=$attributes; ?>><a href="<?=$url; ?>"<?=$linkAttributes; ?>><?=$title; ?></a></li>
3
+<?php endif; ?>
Please login to merge, or discard this patch.
views/elements/text.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,3 +1,3 @@
 block discarded – undo
1 1
 <?php if ($canDisplay) :?>
2
-<li<?=$attributes;?>><?=$text;?></li>
3
-<?php endif;?>
2
+<li<?=$attributes; ?>><?=$text; ?></li>
3
+<?php endif; ?>
Please login to merge, or discard this patch.