Completed
Push — master ( 200c6a...200e13 )
by Freek
01:43 queued 10s
created
tests/TestCase.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,14 +41,14 @@  discard block
 block discarded – undo
41 41
 
42 42
     protected function setUpDatabase()
43 43
     {
44
-        $this->app['db']->connection()->getSchemaBuilder()->create('dummies', function (Blueprint $table) {
44
+        $this->app['db']->connection()->getSchemaBuilder()->create('dummies', function(Blueprint $table) {
45 45
             $table->increments('id');
46 46
             $table->string('name');
47 47
             $table->string('custom_column_sort');
48 48
             $table->integer('order_column');
49 49
         });
50 50
 
51
-        collect(range(1, 20))->each(function (int $i) {
51
+        collect(range(1, 20))->each(function(int $i) {
52 52
             Dummy::create([
53 53
                 'name' => $i,
54 54
                 'custom_column_sort' => rand(),
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
     protected function setUpSoftDeletes()
60 60
     {
61
-        $this->app['db']->connection()->getSchemaBuilder()->table('dummies', function (Blueprint $table) {
61
+        $this->app['db']->connection()->getSchemaBuilder()->table('dummies', function(Blueprint $table) {
62 62
             $table->softDeletes();
63 63
         });
64 64
     }
Please login to merge, or discard this patch.
src/SortableTrait.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 {
12 12
     public static function bootSortableTrait()
13 13
     {
14
-        static::creating(function ($model) {
14
+        static::creating(function($model) {
15 15
             if ($model instanceof Sortable && $model->shouldSortWhenCreating()) {
16 16
                 $model->setHighestOrderNumber();
17 17
             }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     public static function setNewOrder($ids, int $startOrder = 1, string $primaryKeyColumn = null)
39 39
     {
40
-        if (! is_array($ids) && ! $ids instanceof ArrayAccess) {
40
+        if (!is_array($ids) && !$ids instanceof ArrayAccess) {
41 41
             throw new InvalidArgumentException('You must pass an array or ArrayAccess object to setNewOrder');
42 42
         }
43 43
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     {
66 66
         if (
67 67
             isset($this->sortable['order_column_name']) &&
68
-            ! empty($this->sortable['order_column_name'])
68
+            !empty($this->sortable['order_column_name'])
69 69
         ) {
70 70
             return $this->sortable['order_column_name'];
71 71
         }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
             ->where($orderColumnName, '>', $this->$orderColumnName)
91 91
             ->first();
92 92
 
93
-        if (! $swapWithModel) {
93
+        if (!$swapWithModel) {
94 94
             return $this;
95 95
         }
96 96
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
             ->where($orderColumnName, '<', $this->$orderColumnName)
107 107
             ->first();
108 108
 
109
-        if (! $swapWithModel) {
109
+        if (!$swapWithModel) {
110 110
             return $this;
111 111
         }
112 112
 
Please login to merge, or discard this patch.