1 | <?php |
||
9 | class ContainerAwareRestResourceController extends AbstractRestResourceController implements ContainerAwareInterface |
||
10 | { |
||
11 | use ContainerAwareTrait; |
||
12 | |||
13 | /** |
||
14 | * @return CrudServiceInterface |
||
15 | */ |
||
16 | 72 | protected function getService(): CrudServiceInterface |
|
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | 62 | protected function getNormalizer() |
|
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | 24 | protected function getValidator() |
|
56 | |||
57 | /** |
||
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | 24 | protected function getRequestParser() |
|
64 | |||
65 | /** |
||
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | 80 | protected function getRequestStack() |
|
72 | |||
73 | /** |
||
74 | * {@inheritdoc} |
||
75 | */ |
||
76 | 80 | protected function getMetadataFactory() |
|
80 | |||
81 | /** |
||
82 | * {@inheritdoc} |
||
83 | */ |
||
84 | protected function getPropertyAccessor() |
||
88 | |||
89 | /** |
||
90 | * {@inheritdoc} |
||
91 | */ |
||
92 | 46 | protected function getAuthorizationChecker() |
|
96 | |||
97 | /** |
||
98 | * {@inheritdoc} |
||
99 | */ |
||
100 | 70 | protected function getEntityManager() |
|
104 | } |
||
105 |