Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
37 | public function removeSubscribers(User $user, array $subscribers): void |
||
38 | { |
||
39 | $qb = $this->createQueryBuilder('s'); |
||
40 | $qb |
||
41 | ->delete() |
||
42 | ->where('s.author = :author') |
||
43 | ->andWhere('s.subscriber IN (:subscribers)') |
||
44 | ->setParameter('author', $user->getId()) |
||
45 | ->setParameter('subscribers', $subscribers) |
||
46 | ->getQuery()->execute(); |
||
47 | ; |
||
48 | } |
||
49 | } |