chamilo/chamilo-lms

View on GitHub
src/CourseBundle/Repository/CLpRepository.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid unused parameters such as '$active'.
Open

        ?int $active = null,

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Avoid unused parameters such as '$onlyPublished'.
Open

        bool $onlyPublished = true,

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Avoid unused parameters such as '$categoryId'.
Open

        ?int $categoryId = null

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Missing class doc comment
Open

final class CLpRepository extends ResourceRepository implements ResourceWithLinkInterface

Missing function doc comment
Open

    public function createLp(CLp $lp): void

Missing function doc comment
Open

    public function findForumByCourse(CLp $lp, Course $course, ?Session $session = null): ?CForum

Add a single space around assignment operators
Open

declare(strict_types=1);

Missing function doc comment
Open

    public function findAllByCourse(

Missing function doc comment
Open

    public function getLink(ResourceInterface $resource, RouterInterface $router, array $extraParams = []): string

Missing function doc comment
Open

    public function __construct(ManagerRegistry $registry)

There are no issues that match your filters.

Category
Status