Passed
Branch master (785b60)
by Ruud
06:23
created
Category
src/Database/Schema/Macros/UserStampsMacro.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     private function registerUserstamps()
25 25
     {
26
-        Blueprint::macro('userstamps', function () {
26
+        Blueprint::macro('userstamps', function() {
27 27
             $this->unsignedInteger(config('userstamps.created_by_column'))->nullable();
28 28
             $this->unsignedInteger(config('userstamps.updated_by_column'))->nullable();
29 29
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
     private function registerSoftUserstamps()
45 45
     {
46
-        Blueprint::macro('softUserstamps', function () {
46
+        Blueprint::macro('softUserstamps', function() {
47 47
             $this->unsignedInteger(config('userstamps.deleted_by_column'))->nullable();
48 48
 
49 49
             $this->foreign(config('userstamps.deleted_by_column'))
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
     private function registerDropUserstamps()
59 59
     {
60
-        Blueprint::macro('dropUserstamps', function () {
60
+        Blueprint::macro('dropUserstamps', function() {
61 61
             if (!DB::connection() instanceof SQLiteConnection) {
62 62
                 $this->dropForeign([
63 63
                     config('userstamps.created_by_column'),
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
     private function registerDropSoftUserstamps()
81 81
     {
82
-        Blueprint::macro('dropSoftUserstamps', function () {
82
+        Blueprint::macro('dropSoftUserstamps', function() {
83 83
             if (!DB::connection() instanceof SQLiteConnection) {
84 84
                 $this->dropForeign([
85 85
                     config('userstamps.deleted_by_column'),
Please login to merge, or discard this patch.