| 1 | <?php |
||
| 15 | class Included |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | protected $included = []; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $relationship |
||
| 24 | */ |
||
| 25 | public function add($relationship) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return array |
||
| 43 | */ |
||
| 44 | public function get() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return bool |
||
| 51 | */ |
||
| 52 | public function isEmpty() |
||
| 56 | } |
||
| 57 |