Completed
Push — master ( 46c0ae...604710 )
by Joao
03:23
created
src/menusServiceProvider.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     public function boot()
15 15
     {
16 16
         // Publish our routes
17
-		require __DIR__ . '/routes.php';
17
+        require __DIR__ . '/routes.php';
18 18
 
19 19
         // Publish our views
20 20
         $this->loadViewsFrom(base_path("resources/views"), 'menus');
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,12 +19,12 @@  discard block
 block discarded – undo
19 19
         // Publish our views
20 20
         $this->loadViewsFrom(base_path("resources/views"), 'menus');
21 21
         $this->publishes([
22
-            __DIR__ .  '/views' => base_path("resources/views")
22
+            __DIR__ . '/views' => base_path("resources/views")
23 23
         ]);
24 24
 
25 25
         // Publish our migrations
26 26
         $this->publishes([
27
-            __DIR__ .  '/migrations' => base_path("database/migrations")
27
+            __DIR__ . '/migrations' => base_path("database/migrations")
28 28
         ], 'migrations');
29 29
 
30 30
         // Publish a config file
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     public function register()
42 42
     {
43 43
         // Bind the
44
-        $this->app->bind('menus', function(){
44
+        $this->app->bind('menus', function() {
45 45
             return new menus;
46 46
         });
47 47
     }
Please login to merge, or discard this patch.
src/Migrations/2016_01_18_000000_create_menu_tables.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function up()
15 15
     {
16 16
 
17
-        Schema::create('Menu', function (Blueprint $table) {
17
+        Schema::create('Menu', function(Blueprint $table) {
18 18
             $table->increments('id');
19 19
             $table->string('name', 50);
20 20
             $table->integer('pos')->unsigned();
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
             $table->creation();
25 25
         });
26 26
 
27
-        Schema::create('Page', function (Blueprint $table) {
27
+        Schema::create('Page', function(Blueprint $table) {
28 28
             $table->increments('id');
29 29
             $table->string('name', 50);
30 30
             $table->string('url', 250);
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
             $table->creation();
38 38
         });
39 39
 
40
-        Schema::create('Menu_Page', function (Blueprint $table) {
40
+        Schema::create('Menu_Page', function(Blueprint $table) {
41 41
             $table->increments('id');
42 42
             $table->integer('menu')->unsigned();
43 43
             $table->integer('page')->unsigned();
Please login to merge, or discard this patch.