Completed
Push — master ( 76e8e7...f18538 )
by Antonio Carlos
14s queued 11s
created
src/Data/RepositoryManager.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\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;
Please login to merge, or discard this patch.
2015_03_07_311090_create_tracker_sql_query_bindings_parameters_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311084_create_tracker_system_classes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311078_create_tracker_devices_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
migrations/2015_03_07_311075_create_tracker_route_path_parameters_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/migrations/2015_11_23_311097_create_tracker_languages_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/migrations/2015_11_23_311096_add_tracker_referer_column_to_log.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         );
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311088_create_tracker_sql_queries_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311072_create_tracker_queries_arguments_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.