| 1 | <?php namespace Arcanedev\LaravelMessenger\Models; |
||
| 12 | abstract class Model extends BaseModel |
||
| 13 | { |
||
| 14 | /* ----------------------------------------------------------------- |
||
| 15 | | Traits |
||
| 16 | | ----------------------------------------------------------------- |
||
| 17 | */ |
||
| 18 | |||
| 19 | use ConfigHelper; |
||
| 20 | |||
| 21 | /* ----------------------------------------------------------------- |
||
| 22 | | Constructor |
||
| 23 | | ----------------------------------------------------------------- |
||
| 24 | */ |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Create a new Eloquent model instance. |
||
| 28 | * |
||
| 29 | * @param array $attributes |
||
| 30 | */ |
||
| 31 | 120 | public function __construct(array $attributes = []) |
|
| 39 | } |
||
| 40 |