Completed
Pull Request — master (#555)
by
unknown
34s
created
src/migrations/2015_03_07_311070_create_tracker_paths_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('path')->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311082_create_tracker_sessions_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('uuid')->unique()->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311085_create_tracker_log_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('session_id')->unsigned()->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311077_create_tracker_cookies_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('uuid')->unique();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311079_create_tracker_domains_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.
migrations/2015_03_07_311089_create_tracker_sql_query_bindings_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_311073_create_tracker_routes_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.
2015_11_23_311099_add_tracker_language_foreign_key_to_sessions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      */
12 12
     public function migrateUp()
13 13
     {
14
-        $this->builder->table('tracker_sessions', function ($table) {
14
+        $this->builder->table('tracker_sessions', function($table) {
15 15
             $table->foreign('language_id')
16 16
                     ->references('id')
17 17
                     ->on('tracker_languages')
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function migrateDown()
29 29
     {
30
-        $this->builder->table('tracker_sessions', function ($table) {
30
+        $this->builder->table('tracker_sessions', function($table) {
31 31
             $table->dropForeign(['language_id']);
32 32
         });
33 33
     }
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311086_create_tracker_events_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.