| 1 | <?php namespace Arcanedev\LaravelAuth\Models; |
||
| 17 | abstract class AbstractModel extends Model |
||
| 18 | { |
||
| 19 | /* ----------------------------------------------------------------- |
||
| 20 | | Traits |
||
| 21 | | ----------------------------------------------------------------- |
||
| 22 | */ |
||
| 23 | use PrefixedModel; |
||
| 24 | |||
| 25 | /* ----------------------------------------------------------------- |
||
| 26 | | Constructor |
||
| 27 | | ----------------------------------------------------------------- |
||
| 28 | */ |
||
| 29 | /** |
||
| 30 | * Create a new Eloquent model instance. |
||
| 31 | * |
||
| 32 | * @param array $attributes |
||
| 33 | */ |
||
| 34 | 225 | public function __construct(array $attributes = []) |
|
| 41 | } |
||
| 42 |