Showing 24 of 38 total issues
BaseRepository
has 49 functions (exceeds 20 allowed). Consider refactoring. Open
abstract class BaseRepository implements RepositoryInterface, RepositoryCriteriaInterface
{
/**
* @var Application
File BaseRepository.php
has 436 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace Prettus\Repository\Eloquent;
use Exception;
use Illuminate\Container\Container as Application;
Method apply
has 103 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function apply($model, RepositoryInterface $repository)
{
$fieldsSearchable = $repository->getFieldsSearchable();
$search = $this->request->get(config('repository.criteria.params.search', 'search'), null);
$searchFields = $this->request->get(config('repository.criteria.params.searchFields', 'searchFields'), null);
Function parserFieldsSearch
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring. Open
protected function parserFieldsSearch(array $fields = [], array $searchFields = null)
{
if (!is_null($searchFields) && count($searchFields)) {
$acceptedConditions = config(
'repository.criteria.acceptedConditions',
- 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
Generator
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
abstract class Generator
{
/**
* The filesystem instance.
Method fire
has 53 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function fire()
{
$this->generators = new Collection();
$this->generators->push(
Function apply
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
public function apply($model, RepositoryInterface $repository)
{
$fieldsSearchable = $repository->getFieldsSearchable();
$search = $this->request->get(config('repository.criteria.params.search', 'search'), null);
$searchFields = $this->request->get(config('repository.criteria.params.searchFields', 'searchFields'), null);
- 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 fire
has 49 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function fire()
{
if ($this->confirm('Would you like to create a Presenter? [y|N]')) {
$this->call(
Method getStub
has 43 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function getStub()
{
$parser = $this->getNameParser();
$action = $parser->getAction();
Method parserFieldsSearch
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function parserFieldsSearch(array $fields = [], array $searchFields = null)
{
if (!is_null($searchFields) && count($searchFields)) {
$acceptedConditions = config(
'repository.criteria.acceptedConditions',
Method getConfigGeneratorClassPath
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function getConfigGeneratorClassPath($class, $directoryPath = false)
{
switch ($class) {
case ('models' === $class):
$path = config('repository.generator.paths.models', 'Entities');
Function getConfigGeneratorClassPath
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
public function getConfigGeneratorClassPath($class, $directoryPath = false)
{
switch ($class) {
case ('models' === $class):
$path = config('repository.generator.paths.models', 'Entities');
- 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 fire
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function fire()
{
try {
$bindingGenerator = new BindingsGenerator(
[
Function handle
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
public function handle(RepositoryEventBase $event)
{
try {
$cleanEnabled = config("repository.cache.clean.enabled", true);
- 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 getOptions
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function getOptions()
{
return [
[
'fillable',
Method getOptions
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function getOptions()
{
return [
[
'fillable',
Function validator
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function validator()
{
if (isset($this->rules) && !is_null($this->rules) && is_array($this->rules) && !empty($this->rules)) {
if (class_exists('Prettus\Validator\LaravelValidator')) {
- 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 parserResult
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function parserResult($result)
{
if ($this->presenter instanceof PresenterInterface) {
if ($result instanceof Collection || $result instanceof LengthAwarePaginator) {
- 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 parserSearchValue
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
protected function parserSearchValue($search)
{
if (stripos($search, $this->valueDelimiter) || stripos($search, ':')) {
$values = explode($this->valueDelimiter, $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
Function applyCriteria
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
protected function applyCriteria()
{
if ($this->skipCriteria === true) {
return $this;
- 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"