S1lentium/IPTools

View on GitHub

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();
Severity: Minor
Found in src/Range.php - About 3 hrs to fix

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;

    /**
Severity: Minor
Found in src/Network.php - About 3 hrs to fix

    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
    Severity: Minor
    Found in src/Network.php - About 1 hr to fix

      Method getNetworks has 31 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function getNetworks()
          {
              $span = $this->getSpanNetwork();
      
              $networks = array();
      Severity: Minor
      Found in src/Range.php - About 1 hr to fix

        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
        Severity: Minor
        Found in src/Network.php - About 1 hr to fix

        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");
        Severity: Minor
        Found in src/IP.php - About 55 mins to fix

        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");
                }
        Severity: Minor
        Found in src/IP.php - About 45 mins to fix

        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);
        Severity: Minor
        Found in src/Range.php - About 25 mins to fix

        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

        Severity
        Category
        Status
        Source
        Language