| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | trait HasIncluded |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * The collection of included resources |
||
| 14 | * |
||
| 15 | * @var CollectionFactory |
||
| 16 | */ |
||
| 17 | public $included; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Sets the included collection. |
||
| 21 | * |
||
| 22 | * @param CollectionFactory $included |
||
| 23 | * |
||
| 24 | * @return static |
||
| 25 | */ |
||
| 26 | public function setIncluded($included) |
||
| 33 |