Showing 9 of 17 total issues
Map
has 31 functions (exceeds 20 allowed). Consider refactoring. Open
class Map implements AllocatedInterface, ArrayAccess, CollectionInterface, IteratorAggregate
{
use Traits\Collection;
use Traits\Functional;
use Traits\Builder;
- Create a ticketCreate a ticket
Function mergeSort
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring. Open
public function mergeSort(callable $callback)
{
$count = $this->count();
$result = new SplFixedArray($count);
- Read upRead up
- Create a ticketCreate a ticket
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 mergeSort
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring. Open
public function mergeSort(callable $callback)
{
$count = $this->count();
$sfa = $this->getValues();
- Read upRead up
- Create a ticketCreate a ticket
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
File LinkedList.php
has 258 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php namespace Mbh\Collection\Traits\Sequenceable;
use Mbh\Collection\Interfaces\Collection as CollectionInterface;
use Mbh\Collection\Interfaces\Functional as FunctionalInterface;
use Mbh\Collection\Interfaces\Sequenceable as SequenceableInterface;
- Create a ticketCreate a ticket
Method mergeSort
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function mergeSort(callable $callback)
{
$count = $this->count();
$sfa = $this->getValues();
- Create a ticketCreate a ticket
Method mergeSort
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function mergeSort(callable $callback)
{
$count = $this->count();
$result = new SplFixedArray($count);
- Create a ticketCreate a ticket
Function __construct
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public function __construct(...$args)
{
parent::__construct();
foreach ($args as $i => $iterator) {
- Read upRead up
- Create a ticketCreate a ticket
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 join
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public function join(string $token = ',', string $secondToken = null): string
{
$str = "";
if ($secondToken !== null) {
foreach ($this as $i => $elem) {
- Read upRead up
- Create a ticketCreate a ticket
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 join
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public function join(string $token = ',', string $secondToken = null): string
{
$str = "";
if ($secondToken !== null) {
foreach ($this as $i => $elem) {
- Read upRead up
- Create a ticketCreate a ticket
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"