chamilo/chamilo-lms

View on GitHub
src/CoreBundle/Controller/Api/ExportCGlossaryAction.php

Summary

Maintainability
A
0 mins
Test Coverage

The class ExportCGlossaryAction has a coupling between objects value of 14. Consider to reduce the number of dependencies under 13.
Open

class ExportCGlossaryAction
{
    public function __invoke(Request $request, CGlossaryRepository $repo, EntityManager $em, KernelInterface $kernel, TranslatorInterface $translator): Response
    {
        $format = $request->get('format');

CouplingBetweenObjects

Since: 1.1.0

A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability

Example

class Foo {
    /**
     * @var \foo\bar\X
     */
    private $x = null;

    /**
     * @var \foo\bar\Y
     */
    private $y = null;

    /**
     * @var \foo\bar\Z
     */
    private $z = null;

    public function setFoo(\Foo $foo) {}
    public function setBar(\Bar $bar) {}
    public function setBaz(\Baz $baz) {}

    /**
     * @return \SplObjectStorage
     * @throws \OutOfRangeException
     * @throws \InvalidArgumentException
     * @throws \ErrorException
     */
    public function process(\Iterator $it) {}

    // ...
}

Source https://phpmd.org/rules/design.html#couplingbetweenobjects

Add a single space around assignment operators
Open

declare(strict_types=1);

Missing class doc comment
Open

class ExportCGlossaryAction

Missing function doc comment
Open

    public function __invoke(Request $request, CGlossaryRepository $repo, EntityManager $em, KernelInterface $kernel, TranslatorInterface $translator): Response

There are no issues that match your filters.

Category
Status