Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class ProfilesUnfollowController |
||
16 | { |
||
17 | /** |
||
18 | * @var EntityManagerInterface |
||
19 | */ |
||
20 | private $manager; |
||
21 | |||
22 | /** |
||
23 | * @param EntityManagerInterface $manager |
||
24 | */ |
||
25 | 1 | public function __construct(EntityManagerInterface $manager) |
|
28 | 1 | } |
|
29 | |||
30 | /** |
||
31 | * @param UserInterface $user |
||
32 | * @param User $profile |
||
33 | * |
||
34 | * @return array |
||
35 | */ |
||
36 | 1 | public function __invoke(UserInterface $user, User $profile) |
|
46 |