EscolaLMS/Consultations

View on GitHub
src/Repositories/Contracts/ConsultationUserRepositoryContract.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Return type of allQueryBuilder() is undeclared type \Illuminate\Database\Eloquent\Builder
Open

    public function allQueryBuilder(

Return type of getIncomingTerm() is undeclared type \Illuminate\Support\Collection
Open

    public function getIncomingTerm(array $criteria = []): Collection;

Return type of getBusyTerms() is undeclared type \Illuminate\Support\Collection
Open

    public function getBusyTerms(int $consultationId, ?string $date = null): Collection;

Return type of getByCurrentUserTutor() is undeclared type \Illuminate\Support\Collection
Open

    public function getByCurrentUserTutor(): Collection;

Parameter $filterConsultationTermsListDto has undeclared type ?\EscolaLms\Consultations\Dto\FilterConsultationTermsListDto
Open

        array $search = [],

Avoid excessively long variable names like $consultationUserPivot. Keep variable name length under 20.
Open

    public function updateModel(ConsultationUserPivot $consultationUserPivot, array $data): ConsultationUserPivot;

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

Source https://phpmd.org/rules/naming.html#longvariable

Avoid excessively long variable names like $filterConsultationTermsListDto. Keep variable name length under 20.
Open

        ?FilterConsultationTermsListDto $filterConsultationTermsListDto = null

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

Source https://phpmd.org/rules/naming.html#longvariable

There are no issues that match your filters.

Category
Status