diff --git a/src/ActionManager.php b/src/ActionManager.php index 3bf02c5..eb23799 100755 --- a/src/ActionManager.php +++ b/src/ActionManager.php @@ -4,8 +4,6 @@ use Illuminate\Contracts\Foundation\Application; use Illuminate\Routing\Router; -use Illuminate\Support\Collection; -use Illuminate\Support\Str; use Lorisleiva\Actions\Concerns\AsController; use Lorisleiva\Actions\Concerns\AsFake; use Lorisleiva\Actions\DesignPatterns\DesignPattern; diff --git a/tests/UtilTest.php b/tests/UtilTest.php index f03aec5..8648e10 100644 --- a/tests/UtilTest.php +++ b/tests/UtilTest.php @@ -10,7 +10,7 @@ // - one directory that does not exists, // - and one file. $result = Util::getAbsoluteDirectories([ - 'app/Models', 'app/IDontExists', 'composer.json' + 'app/Models', 'app/IDontExists', 'composer.json', ]); // Then we only receive the absolute path of the first directory.