EscolaLMS/Core

View on GitHub

Showing 12 of 14 total issues

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

    Method up has 71 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function up()
        {
            $tableNames = config('permission.table_names');
            $columnNames = config('permission.column_names');
    
    
    Severity: Major
    Found in database/migrations/2020_12_08_055436_create_permission_tables.php - About 2 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 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/Contracts/BaseRepositoryContract.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 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/Contracts/UserableRepositoryContract.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/Contracts/UserableRepositoryContract.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

                    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/Contracts/BaseRepositoryContract.php - About 45 mins to fix

                      Function up has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public function up()
                          {
                              $tableNames = config('permission.table_names');
                              $columnNames = config('permission.column_names');
                      
                      
                      Severity: Minor
                      Found in database/migrations/2020_12_08_055436_create_permission_tables.php - About 25 mins 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

                      Severity
                      Category
                      Status
                      Source
                      Language