| Total Complexity | 2 | 
| Total Lines | 23 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 5 | trait ElementDeleteRelatedItem | ||
| 6 | { | ||
| 7 | /** | ||
| 8 | * @var bool | ||
| 9 | */ | ||
| 10 | protected $deleteRelatedItem = false; | ||
| 11 | |||
| 12 | /** | ||
| 13 | * @return bool | ||
| 14 | */ | ||
| 15 | public function isDeleteRelatedItem() | ||
| 16 |     { | ||
| 17 | return $this->deleteRelatedItem; | ||
| 18 | } | ||
| 19 | |||
| 20 | /** | ||
| 21 | * @return $this | ||
| 22 | */ | ||
| 23 | public function deleteRelatedItem() | ||
| 28 | } | ||
| 29 | } | ||
| 30 |