Passed
Push — master ( 267939...d72f88 )
by Ruud
13:24
created
src/Database/Schema/Macros/UserStampsMacro.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@  discard block
 block discarded – undo
23 23
 
24 24
     private function registerUserstamps()
25 25
     {
26
-        Blueprint::macro('userstamps', function () {
27
-            if (config('userstamps.users_table_column_type') === 'bigIncrements') {
26
+        Blueprint::macro('userstamps', function() {
27
+            if ( config('userstamps.users_table_column_type') === 'bigIncrements' ) {
28 28
                 $this->unsignedBigInteger(config('userstamps.created_by_column'))->nullable();
29 29
                 $this->unsignedBigInteger(config('userstamps.updated_by_column'))->nullable();
30
-            } elseif (config('userstamps.users_table_column_type') === 'uuid') {
30
+            } elseif ( config('userstamps.users_table_column_type') === 'uuid' ) {
31 31
                 $this->uuid(config('userstamps.created_by_column'))->nullable();
32 32
                 $this->uuid(config('userstamps.updated_by_column'))->nullable();
33
-            } elseif (config('userstamps.users_table_column_type') === 'ulid') {
33
+            } elseif ( config('userstamps.users_table_column_type') === 'ulid' ) {
34 34
                 $this->ulid(config('userstamps.created_by_column'))->nullable();
35 35
                 $this->ulid(config('userstamps.updated_by_column'))->nullable();
36 36
             } else {
@@ -54,12 +54,12 @@  discard block
 block discarded – undo
54 54
 
55 55
     private function registerSoftUserstamps()
56 56
     {
57
-        Blueprint::macro('softUserstamps', function () {
58
-            if (config('userstamps.users_table_column_type') === 'bigIncrements') {
57
+        Blueprint::macro('softUserstamps', function() {
58
+            if ( config('userstamps.users_table_column_type') === 'bigIncrements' ) {
59 59
                 $this->unsignedBigInteger(config('userstamps.deleted_by_column'))->nullable();
60
-            } elseif (config('userstamps.users_table_column_type') === 'uuid') {
60
+            } elseif ( config('userstamps.users_table_column_type') === 'uuid' ) {
61 61
                 $this->uuid(config('userstamps.deleted_by_column'))->nullable();
62
-            } elseif (config('userstamps.users_table_column_type') === 'ulid') {
62
+            } elseif ( config('userstamps.users_table_column_type') === 'ulid' ) {
63 63
                 $this->ulid(config('userstamps.deleted_by_column'))->nullable();
64 64
             } else {
65 65
                 $this->unsignedInteger(config('userstamps.deleted_by_column'))->nullable();
@@ -76,14 +76,14 @@  discard block
 block discarded – undo
76 76
 
77 77
     private function registerDropUserstamps()
78 78
     {
79
-        Blueprint::macro('dropUserstamps', function () {
80
-            if (! DB::connection() instanceof SQLiteConnection) {
79
+        Blueprint::macro('dropUserstamps', function() {
80
+            if ( !DB::connection() instanceof SQLiteConnection ) {
81 81
                 $this->dropForeign([
82 82
                     config('userstamps.created_by_column'),
83 83
                 ]);
84 84
             }
85 85
 
86
-            if (! DB::connection() instanceof SQLiteConnection) {
86
+            if ( !DB::connection() instanceof SQLiteConnection ) {
87 87
                 $this->dropForeign([
88 88
                     config('userstamps.updated_by_column'),
89 89
                 ]);
@@ -98,8 +98,8 @@  discard block
 block discarded – undo
98 98
 
99 99
     private function registerDropSoftUserstamps()
100 100
     {
101
-        Blueprint::macro('dropSoftUserstamps', function () {
102
-            if (! DB::connection() instanceof SQLiteConnection) {
101
+        Blueprint::macro('dropSoftUserstamps', function() {
102
+            if ( !DB::connection() instanceof SQLiteConnection ) {
103 103
                 $this->dropForeign([
104 104
                     config('userstamps.deleted_by_column'),
105 105
                 ]);
Please login to merge, or discard this patch.