File CourseRepository.php
has 265 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace EscolaLms\Courses\Repositories;
use EscolaLms\Categories\Models\Category;
Method allQueryBuilder
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function allQueryBuilder(array $search = [], array $criteria = []): Builder
{
/** search main category and all subcategories */
if (isset($search['category_id'])) {
$collection = Category::where('id', $search['category_id'])->with('children')->get();
Method update
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function update(array $input, int $id): Model
{
$query = $this->model->newQuery();
/** @var Course $model */
Function update
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
public function update(array $input, int $id): Model
{
$query = $this->model->newQuery();
/** @var Course $model */
- 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
Function allQueryBuilder
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
public function allQueryBuilder(array $search = [], array $criteria = []): Builder
{
/** search main category and all subcategories */
if (isset($search['category_id'])) {
$collection = Category::where('id', $search['category_id'])->with('children')->get();
- 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
Function create
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function create(array $input): Model
{
/** @var Course $model */
$model = $this->model->newInstance($input);
- 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"