| 1 | <?php |
||
| 9 | abstract class Pivot extends IlluminatePivot |
||
| 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 | 3 | protected static function boot() |
|
| 29 | } |
||
| 30 |