Completed
Push — master ( 67409c...d56194 )
by Oleg
06:45
created
tests/stub/directory/view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,1 +1,1 @@
 block discarded – undo
1
-Hello, <?php echo $menu;?> builder!
2 1
\ No newline at end of file
2
+Hello, <?php echo $menu; ?> builder!
3 3
\ No newline at end of file
Please login to merge, or discard this patch.
tests/stub/text_element.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,1 +1,1 @@
 block discarded – undo
1
-<div<?php echo $attributes;?>><?php echo $text;?></div>
2 1
\ No newline at end of file
2
+<div<?php echo $attributes; ?>><?php echo $text; ?></div>
3 3
\ No newline at end of file
Please login to merge, or discard this patch.
src/MenuServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
     protected function registerRenderSystem()
81 81
     {
82
-        $this->app->bind('menu.render', function (Container $app) {
82
+        $this->app->bind('menu.render', function(Container $app) {
83 83
             $config = $app->make(Repository::class)->get('menu');
84 84
             $key = $config['default'];
85 85
             $available = $config['renders'];
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
     protected function registerComparativeUrl()
97 97
     {
98
-        $this->app->singleton('menu.compare-url', function (Container $app) {
98
+        $this->app->singleton('menu.compare-url', function(Container $app) {
99 99
             return $app->make(ComparativeUrl::class, [
100 100
                 'skippedPaths' => $app->make(Repository::class)->get('menu.skippedPaths'),
101 101
             ]);
Please login to merge, or discard this patch.