Showing 12 of 14 total issues
BaseRepository
has 33 functions (exceeds 20 allowed). Consider refactoring. Open
Open
abstract class BaseRepository implements BaseRepositoryContract, UserableRepositoryContract
{
/**
* @var Model
*/
Method up
has 71 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function up()
{
$tableNames = config('permission.table_names');
$columnNames = config('permission.column_names');
Function allQuery
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
Open
public function allQuery(array $search = [], ?int $skip = null, ?int $limit = null): Builder
{
$query = $this->model->newQuery();
if (count($search)) {
- Read upRead up
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
Open
public function allWithOrder(array $search = [], ?int $skip = null, ?int $limit = null, ?string $orderBy = null, string $direction = 'asc', array $columns = ['*'])
Method allInUserContextQuery
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function allInUserContextQuery(User $user, array $search = [], ?int $skip = null, ?int $limit = null, array $columns = ['*'], string $user_key = 'user_id'): Builder
Method all
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function all(array $search = [], ?int $skip = null, ?int $limit = null, array $columns = ['*'], string $orderDirection = 'asc', string $orderColumn = 'id');
Method allInUserContext
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function allInUserContext(User $user, array $search = [], ?int $skip = null, ?int $limit = null, array $columns = ['*'], string $user_key = 'user_id')
Method allInUserContextQuery
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function allInUserContextQuery(User $user, array $search = [], ?int $skip = null, ?int $limit = null, array $columns = ['*'], string $user_key = 'user_id'): Builder;
Method allInUserContext
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function allInUserContext(User $user, array $search = [], ?int $skip = null, ?int $limit = null, array $columns = ['*'], string $user_key = 'user_id');
Method all
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function all(array $search = [], ?int $skip = null, ?int $limit = null, array $columns = ['*'], string $orderDirection = 'asc', string $orderColumn = 'id')
Method allWithOrder
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function allWithOrder(array $search = [], ?int $skip = null, ?int $limit = null, ?string $orderBy = null, string $direction = 'asc', array $columns = ['*']);
Function up
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
public function up()
{
$tableNames = config('permission.table_names');
$columnNames = config('permission.column_names');
- Read upRead up
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"