Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function remove(ResourceLink $resourceLink): void |
||
21 | { |
||
22 | $em = $this->getEntityManager(); |
||
23 | |||
24 | // To move the resource link at the end to reorder the list |
||
25 | $resourceLink->setDisplayOrder(-1); |
||
26 | |||
27 | $em->flush(); |
||
28 | // soft delete handled by Gedmo\SoftDeleteable |
||
29 | $em->remove($resourceLink); |
||
30 | $em->flush(); |
||
31 | } |
||
33 |