Showing 8 of 8 total issues
Function getNetworks
has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring. Open
public function getNetworks()
{
$span = $this->getSpanNetwork();
$networks = array();
- 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
Network
has 27 functions (exceeds 20 allowed). Consider refactoring. Open
class Network implements \Iterator, \Countable
{
use PropertyTrait;
/**
Method exclude
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function exclude($exclude)
{
$exclude = self::parse($exclude);
if (strcmp($exclude->getFirstIP()->inAddr() , $this->getLastIP()->inAddr()) > 0
Method getNetworks
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function getNetworks()
{
$span = $this->getSpanNetwork();
$networks = array();
Function exclude
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public function exclude($exclude)
{
$exclude = self::parse($exclude);
if (strcmp($exclude->getFirstIP()->inAddr() , $this->getLastIP()->inAddr()) > 0
- 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 prev
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public function prev($to=1)
{
if ($to < 0) {
throw new IpException("Number must be greater than 0");
- 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 next
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function next($to=1)
{
if ($to < 0) {
throw new IpException("Number must be greater than 0");
}
- 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 contains
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function contains($find)
{
if ($find instanceof IP) {
$within = (strcmp($find->inAddr(), $this->firstIP->inAddr()) >= 0)
&& (strcmp($find->inAddr(), $this->lastIP->inAddr()) <= 0);
- 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"