@@ -9,7 +9,7 @@ |
||
9 | 9 | |
10 | 10 | public function install() |
11 | 11 | { |
12 | - Schema::create('counter_log', function ($table) { |
|
12 | + Schema::create('counter_log', function($table) { |
|
13 | 13 | $table->engine = "InnoDB"; |
14 | 14 | |
15 | 15 | $table->bigIncrements('id'); |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | |
10 | 10 | public function install() |
11 | 11 | { |
12 | - Schema::create('files_image', function (Blueprint $table) { |
|
12 | + Schema::create('files_image', function(Blueprint $table) { |
|
13 | 13 | $table->engine = "InnoDB"; |
14 | 14 | |
15 | 15 | $table->string('id', 36); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | $table->index('originId'); |
24 | 24 | }); |
25 | 25 | |
26 | - Schema::create('files_video', function (Blueprint $table) { |
|
26 | + Schema::create('files_video', function(Blueprint $table) { |
|
27 | 27 | $table->engine = "InnoDB"; |
28 | 28 | |
29 | 29 | $table->string('id', 36); |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $table->index('originId'); |
38 | 38 | }); |
39 | 39 | |
40 | - Schema::create('files_audio', function (Blueprint $table) { |
|
40 | + Schema::create('files_audio', function(Blueprint $table) { |
|
41 | 41 | $table->engine = "InnoDB"; |
42 | 42 | |
43 | 43 | $table->string('id', 36); |
@@ -9,7 +9,7 @@ |
||
9 | 9 | |
10 | 10 | public function install() |
11 | 11 | { |
12 | - Schema::create('permissions', function (Blueprint $table) { |
|
12 | + Schema::create('permissions', function(Blueprint $table) { |
|
13 | 13 | $table->engine = "InnoDB"; |
14 | 14 | |
15 | 15 | $table->increments('id'); |
@@ -9,7 +9,7 @@ |
||
9 | 9 | |
10 | 10 | public function install() |
11 | 11 | { |
12 | - Schema::create('instanceRoute', function (Blueprint $table) { |
|
12 | + Schema::create('instanceRoute', function(Blueprint $table) { |
|
13 | 13 | $table->engine = "InnoDB"; |
14 | 14 | |
15 | 15 | $table->increments('id'); |
@@ -21,7 +21,7 @@ |
||
21 | 21 | |
22 | 22 | public function install() |
23 | 23 | { |
24 | - Schema::create('site', function (Blueprint $table) { |
|
24 | + Schema::create('site', function(Blueprint $table) { |
|
25 | 25 | $table->engine = "InnoDB"; |
26 | 26 | |
27 | 27 | $table->string('host'); |
@@ -9,7 +9,7 @@ |
||
9 | 9 | |
10 | 10 | public function install() |
11 | 11 | { |
12 | - Schema::create('temporary', function (Blueprint $table) { |
|
12 | + Schema::create('temporary', function(Blueprint $table) { |
|
13 | 13 | $table->engine = "InnoDB"; |
14 | 14 | |
15 | 15 | $table->string('id', '36'); |
@@ -42,7 +42,7 @@ |
||
42 | 42 | foreach ($menus as $menu) { |
43 | 43 | $option = PhpQuery::pq('<option></option>'); |
44 | 44 | $option->appendTo($select)->attr('value', $menu->id)->html($menu->title); |
45 | - if(isset($args['selected']) && $menu->id == $args['selected']) { |
|
45 | + if (isset($args['selected']) && $menu->id == $args['selected']) { |
|
46 | 46 | $option->attr('selected', 'selected'); |
47 | 47 | } |
48 | 48 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | { |
37 | 37 | $this->app->singleton( |
38 | 38 | 'xe.uiobject', |
39 | - function ($app) { |
|
39 | + function($app) { |
|
40 | 40 | |
41 | 41 | $aliases = $app['config']->get('xe.uiobject.aliases'); |
42 | 42 |
@@ -36,7 +36,7 @@ |
||
36 | 36 | { |
37 | 37 | $this->app->singleton( |
38 | 38 | 'xe.uiobject', |
39 | - function ($app) { |
|
39 | + function($app) { |
|
40 | 40 | |
41 | 41 | $aliases = $app['config']->get('xe.uiobject.aliases'); |
42 | 42 |