Other files ignored by Codecov
.github/workflows/test.yaml
has changed.
composer.json
has changed.
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); |
Files | Complexity | Coverage |
---|---|---|
src | 348 | 55.37% |
Project Totals (36 files) | 348 | 55.37% |