EscolaLMS/Core

View on GitHub
src/Repositories/BaseRepository.php

Summary

Maintainability
C
1 day
Test Coverage
A
93%

BaseRepository has 33 functions (exceeds 20 allowed). Consider refactoring.
Open

abstract class BaseRepository implements BaseRepositoryContract, UserableRepositoryContract
{
    /**
     * @var Model
     */
Severity: Minor
Found in src/Repositories/BaseRepository.php - About 4 hrs to fix

    Function allQuery has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        public function allQuery(array $search = [], ?int $skip = null, ?int $limit = null): Builder
        {
            $query = $this->model->newQuery();
    
            if (count($search)) {
    Severity: Minor
    Found in src/Repositories/BaseRepository.php - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method allWithOrder has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        public function allWithOrder(array $search = [], ?int $skip = null, ?int $limit = null, ?string $orderBy = null, string $direction = 'asc', array $columns = ['*'])
    Severity: Minor
    Found in src/Repositories/BaseRepository.php - About 45 mins to fix

      Method allInUserContextQuery has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          public function allInUserContextQuery(User $user, array $search = [], ?int $skip = null, ?int $limit = null, array $columns = ['*'], string $user_key = 'user_id'): Builder
      Severity: Minor
      Found in src/Repositories/BaseRepository.php - About 45 mins to fix

        Method allInUserContext has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            public function allInUserContext(User $user, array $search = [], ?int $skip = null, ?int $limit = null, array $columns = ['*'], string $user_key = 'user_id')
        Severity: Minor
        Found in src/Repositories/BaseRepository.php - About 45 mins to fix

          Method all has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              public function all(array $search = [], ?int $skip = null, ?int $limit = null, array $columns = ['*'], string $orderDirection = 'asc', string $orderColumn = 'id')
          Severity: Minor
          Found in src/Repositories/BaseRepository.php - About 45 mins to fix

            There are no issues that match your filters.

            Category
            Status