| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function deleteById($remoteCategoryId) |
||
| 19 | { |
||
| 20 | $builder = $this->createQueryBuilder('rc'); |
||
| 21 | $builder->delete('Shopware\CustomModels\Connect\RemoteCategory', 'rc'); |
||
| 22 | $builder->where('rc.id = :rcid'); |
||
| 23 | $builder->setParameter(':rcid', $remoteCategoryId); |
||
| 24 | $builder->getQuery()->execute(); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |