Completed
Push — master ( 0f89d4...6b425f )
by Freek
01:21 queued 01:17
created
src/SortableServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function bootEvents()
35 35
     {
36
-        $this->app['events']->listen('eloquent.creating*', function ($model) {
36
+        $this->app['events']->listen('eloquent.creating*', function($model) {
37 37
 
38 38
             if ($model instanceof Sortable && $model->shouldSortWhenCreating()) {
39 39
                 $model->setHighestOrderNumber();
Please login to merge, or discard this patch.
tests/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     {
44 44
         file_put_contents(__DIR__.'/database.sqlite', null);
45 45
 
46
-        $this->app['db']->connection()->getSchemaBuilder()->create('dummies', function (Blueprint $table) {
46
+        $this->app['db']->connection()->getSchemaBuilder()->create('dummies', function(Blueprint $table) {
47 47
             $table->increments('id');
48 48
             $table->string('name');
49 49
             $table->integer('order_column');
Please login to merge, or discard this patch.