Remove classes from aliases list

Eloquent and Seeder were used to extend from which is a bad practice.
The SoftDeletingTrait should be imported just like the UserTrait and the RemindableTrait.
Str was also removed because it's just a shortcut for the namespace. People can always re-add it if they like.
I wasn't entirely sure what FormRequest was doing here but I have a feeling it's going to be used for the same reasons as one of the above classes. So I removed it as well.
This commit is contained in:
Dries Vints
2014-08-31 17:13:44 +02:00
parent aa9015cac0
commit 2ddf39f29f
2 changed files with 31 additions and 34 deletions

View File

@@ -1,5 +1,7 @@
<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder {
/**