1 | <?php |
||
9 | abstract class Model extends IlluminateModel |
||
10 | { |
||
11 | use AutoCache { |
||
12 | boot as bootAutoCache; |
||
13 | } |
||
14 | |||
15 | use AutoValidate { |
||
16 | boot as bootAutoValidate; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * A method best used to register Eloquent events when the model boots up |
||
21 | * @return void |
||
22 | */ |
||
23 | 6 | protected static function boot() |
|
29 | } |
||
30 |