Skip to content

Commit 721b714

Browse files
oddvaluegithub-actions[bot]
authored andcommitted
Fix styling
1 parent d97c2db commit 721b714

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

tests/Dummy.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

33
namespace Oddvalue\EloquentSortable\Tests;
44

5-
class Dummy extends \Illuminate\Database\Eloquent\Model implements \Oddvalue\EloquentSortable\Sortable
5+
use Illuminate\Database\Eloquent\Model;
6+
use Oddvalue\EloquentSortable\Sortable;
7+
use Oddvalue\EloquentSortable\SortableTrait;
8+
9+
class Dummy extends Model implements Sortable
610
{
7-
use \Oddvalue\EloquentSortable\SortableTrait;
11+
use SortableTrait;
812

913
protected $table = 'dummies';
1014

tests/TestCase.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace Oddvalue\EloquentSortable\Tests;
44

55
use Illuminate\Database\Schema\Blueprint;
6+
use Illuminate\Foundation\Application;
67
use Orchestra\Testbench\TestCase as Orchestra;
78

89
class TestCase extends Orchestra
@@ -15,7 +16,7 @@ protected function setUp(): void
1516
}
1617

1718
/**
18-
* @param \Illuminate\Foundation\Application $app
19+
* @param Application $app
1920
* @return array
2021
*/
2122
protected function getPackageProviders($app)
@@ -26,7 +27,7 @@ protected function getPackageProviders($app)
2627
}
2728

2829
/**
29-
* @param \Illuminate\Foundation\Application $app
30+
* @param Application $app
3031
*/
3132
protected function getEnvironmentSetUp($app)
3233
{

0 commit comments

Comments
 (0)