1 | <?php |
||
20 | class DeletionService implements DeletionServiceInterface |
||
21 | { |
||
22 | //<editor-fold desc="Fields"> |
||
23 | /** |
||
24 | * @var EntityManagerInterface |
||
25 | */ |
||
26 | private $entityManager; |
||
27 | //</editor-fold desc="Fields"> |
||
28 | |||
29 | //<editor-fold desc="Constructor"> |
||
30 | /** |
||
31 | * DeletionService constructor. |
||
32 | * @param EntityManagerInterface $entityManager |
||
33 | */ |
||
34 | public function __construct(EntityManagerInterface $entityManager) |
||
38 | //</editor-fold desc="Constructor"> |
||
39 | |||
40 | //<editor-fold desc="Public Methods"> |
||
41 | /** |
||
42 | * @inheritDoc |
||
43 | */ |
||
44 | public function deletePlayer(PlayerInterface $player): void |
||
48 | |||
49 | //</editor-fold desc="Public Methods"> |
||
50 | } |