| 1 | <?php |
||
| 16 | class Follower extends Model |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Follower construct. |
||
| 20 | * |
||
| 21 | * @param array $attributes |
||
| 22 | */ |
||
| 23 | public function __construct(array $attributes = []) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Returns the entity that followed this entity. |
||
| 31 | * |
||
| 32 | * @return \Illuminate\Database\Eloquent\Model |
||
| 33 | */ |
||
| 34 | public function followable() |
||
| 38 | } |
||
| 39 |