| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | abstract class CRUDElement extends GenericCRUDElement implements Element |
||
| 17 | { |
||
| 18 | use DataIndexerElementImpl; |
||
| 19 | |||
| 20 | public function save($object): void |
||
| 24 | } |
||
| 25 | |||
| 26 | public function saveDataGrid(): void |
||
| 27 | { |
||
| 28 | $this->getObjectManager()->flush(); |
||
| 29 | } |
||
| 30 | |||
| 31 | public function delete($object): void |
||
| 35 | } |
||
| 36 | } |
||
| 37 |