| 1 | <?php |
||
| 15 | class Relatable extends Model |
||
| 16 | { |
||
| 17 | /** @var array */ |
||
| 18 | protected $guarded = []; |
||
| 19 | |||
| 20 | /** @var string|null */ |
||
| 21 | protected $primaryKey = null; |
||
| 22 | |||
| 23 | /** @var bool */ |
||
| 24 | public $incrementing = false; |
||
| 25 | |||
| 26 | /** @var bool */ |
||
| 27 | public $timestamps = false; |
||
| 28 | |||
| 29 | public function related() : MorphTo |
||
| 33 | |||
| 34 | public function source() : MorphTo |
||
| 38 | |||
| 39 | public function getTable() : string |
||
| 43 | |||
| 44 | public function getRelatedValues() : array |
||
| 51 | } |
||
| 52 |