@@ -5,7 +5,6 @@ |
||
| 5 | 5 | use Illuminate\Routing\Router as IlluminateRouter; |
| 6 | 6 | use Illuminate\Session\Store as IlluminateSession; |
| 7 | 7 | use PragmaRX\Support\Config; |
| 8 | -use PragmaRX\Support\GeoIp\GeoIp; |
|
| 9 | 8 | use PragmaRX\Tracker\Data\Repositories\Agent; |
| 10 | 9 | use PragmaRX\Tracker\Data\Repositories\Connection; |
| 11 | 10 | use PragmaRX\Tracker\Data\Repositories\Cookie; |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->bigInteger('sql_query_bindings_id')->unsigned()->nullable(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('name')->index(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('kind', 16)->index(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->bigInteger('route_path_id')->unsigned()->index(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('preference')->index(); |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->table( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->integer('referer_id')->unsigned()->nullable()->index(); |
| 25 | 25 | } |
| 26 | 26 | ); |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | { |
| 36 | 36 | $this->builder->table( |
| 37 | 37 | $this->table, |
| 38 | - function ($table) { |
|
| 38 | + function($table) { |
|
| 39 | 39 | $table->dropColumn('referer_id'); |
| 40 | 40 | } |
| 41 | 41 | ); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('sha1', 40)->index(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->bigInteger('query_id')->unsigned()->index(); |