No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
92cea37
... +0 ...
2a9582f
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
74 | 74 | ||
75 | 75 | public function treeAction(Request $request): Response |
|
76 | 76 | { |
|
77 | - | $categoryManager = $this->get('sonata.classification.manager.category'); |
|
77 | + | $categoryManager = $this->container->get('sonata.classification.manager.category'); |
|
78 | 78 | \assert($categoryManager instanceof CategoryManagerInterface); |
|
79 | 79 | ||
80 | 80 | $currentContext = null; |
|
81 | 81 | ||
82 | 82 | $contextId = $request->get('context'); |
|
83 | 83 | if (null !== $contextId) { |
|
84 | - | $contextManager = $this->get('sonata.classification.manager.context'); |
|
84 | + | $contextManager = $this->container->get('sonata.classification.manager.context'); |
|
85 | 85 | \assert($contextManager instanceof ContextManagerInterface); |
|
86 | 86 | ||
87 | 87 | $currentContext = $contextManager->find($contextId); |
2a9582f
92cea37