steeffeen/FancyManiaLinks

View on GitHub
FML/ManiaLink.php

Summary

Maintainability
D
1 day
Test Coverage
A
95%

ManiaLink has 35 functions (exceeds 20 allowed). Consider refactoring.
Open

class ManiaLink
{

    /*
     * Constants
Severity: Minor
Found in FML/ManiaLink.php - About 4 hrs to fix

    The class ManiaLink has 11 public methods. Consider refactoring ManiaLink to keep number of public methods under 10.
    Open

    class ManiaLink
    {
    
        /*
         * Constants
    Severity: Minor
    Found in FML/ManiaLink.php by phpmd

    TooManyPublicMethods

    Since: 0.1

    A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

    By default it ignores methods starting with 'get' or 'set'.

    Example

    Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

    The class ManiaLink has an overall complexity of 73 which is very high. The configured complexity threshold is 50.
    Open

    class ManiaLink
    {
    
        /*
         * Constants
    Severity: Minor
    Found in FML/ManiaLink.php by phpmd

    File ManiaLink.php has 300 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace FML;
    
    use FML\Elements\Dico;
    Severity: Minor
    Found in FML/ManiaLink.php - About 3 hrs to fix

      Function render has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
      Open

          public function render($echo = false, $domDocument = null)
          {
              $isChild = (bool)$domDocument;
              if (!$isChild) {
                  $domDocument                = new \DOMDocument("1.0", "utf-8");
      Severity: Minor
      Found in FML/ManiaLink.php - About 2 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

      Method render has 66 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function render($echo = false, $domDocument = null)
          {
              $isChild = (bool)$domDocument;
              if (!$isChild) {
                  $domDocument                = new \DOMDocument("1.0", "utf-8");
      Severity: Major
      Found in FML/ManiaLink.php - About 2 hrs to fix

        Function __construct has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

            public function __construct($maniaLinkId = null, $version = null, $name = null, array $children = null)
            {
                if (is_string($version) && (!$name || is_array($name)) && !$children) {
                    // backwards-compatibility (version has been introduced later, if it's a string it's supposed to be the name)
                    $children = $name;
        Severity: Minor
        Found in FML/ManiaLink.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

        The method render() has an NPath complexity of 147456. The configured NPath complexity threshold is 200.
        Open

            public function render($echo = false, $domDocument = null)
            {
                $isChild = (bool)$domDocument;
                if (!$isChild) {
                    $domDocument                = new \DOMDocument("1.0", "utf-8");
        Severity: Minor
        Found in FML/ManiaLink.php by phpmd

        NPathComplexity

        Since: 0.1

        The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

        Example

        class Foo {
            function bar() {
                // lots of complicated code
            }
        }

        Source https://phpmd.org/rules/codesize.html#npathcomplexity

        The method render() has a Cyclomatic Complexity of 19. The configured cyclomatic complexity threshold is 10.
        Open

            public function render($echo = false, $domDocument = null)
            {
                $isChild = (bool)$domDocument;
                if (!$isChild) {
                    $domDocument                = new \DOMDocument("1.0", "utf-8");
        Severity: Minor
        Found in FML/ManiaLink.php by phpmd

        CyclomaticComplexity

        Since: 0.1

        Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

        Example

        // Cyclomatic Complexity = 11
        class Foo {
        1   public function example() {
        2       if ($a == $b) {
        3           if ($a1 == $b1) {
                        fiddle();
        4           } elseif ($a2 == $b2) {
                        fiddle();
                    } else {
                        fiddle();
                    }
        5       } elseif ($c == $d) {
        6           while ($c == $d) {
                        fiddle();
                    }
        7        } elseif ($e == $f) {
        8           for ($n = 0; $n < $h; $n++) {
                        fiddle();
                    }
                } else {
                    switch ($z) {
        9               case 1:
                            fiddle();
                            break;
        10              case 2:
                            fiddle();
                            break;
        11              case 3:
                            fiddle();
                            break;
                        default:
                            fiddle();
                            break;
                    }
                }
            }
        }

        Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

        The method getDico has a boolean flag argument $createIfEmpty, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function getDico($createIfEmpty = true)
        Severity: Minor
        Found in FML/ManiaLink.php by phpmd

        BooleanArgumentFlag

        Since: 1.4.0

        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

        Example

        class Foo {
            public function bar($flag = true) {
            }
        }

        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

        The method render has a boolean flag argument $echo, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function render($echo = false, $domDocument = null)
        Severity: Minor
        Found in FML/ManiaLink.php by phpmd

        BooleanArgumentFlag

        Since: 1.4.0

        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

        Example

        class Foo {
            public function bar($flag = true) {
            }
        }

        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

        Missing class import via use statement (line '557', column '47').
        Open

                    $domDocument                = new \DOMDocument("1.0", "utf-8");
        Severity: Minor
        Found in FML/ManiaLink.php by phpmd

        MissingImport

        Since: 2.7.0

        Importing all external classes in a file through use statements makes them clearly visible.

        Example

        function make() {
            return new \stdClass();
        }

        Source http://phpmd.org/rules/cleancode.html#MissingImport

        The method getStylesheet has a boolean flag argument $createIfEmpty, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function getStylesheet($createIfEmpty = true)
        Severity: Minor
        Found in FML/ManiaLink.php by phpmd

        BooleanArgumentFlag

        Since: 1.4.0

        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

        Example

        class Foo {
            public function bar($flag = true) {
            }
        }

        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

        The method getScript has a boolean flag argument $createIfEmpty, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function getScript($createIfEmpty = true)
        Severity: Minor
        Found in FML/ManiaLink.php by phpmd

        BooleanArgumentFlag

        Since: 1.4.0

        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

        Example

        class Foo {
            public function bar($flag = true) {
            }
        }

        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

        The method __construct uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
        Open

                } else {
                    $this->setVersion($version);
                }
        Severity: Minor
        Found in FML/ManiaLink.php by phpmd

        ElseExpression

        Since: 1.4.0

        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

        Example

        class Foo
        {
            public function bar($flag)
            {
                if ($flag) {
                    // one branch
                } else {
                    // another branch
                }
            }
        }

        Source https://phpmd.org/rules/cleancode.html#elseexpression

        The closing brace for the class must go on the next line after the body
        Open

        }
        Severity: Minor
        Found in FML/ManiaLink.php by phpcodesniffer

        The 'getNavigable3d()' method which returns a boolean should be named 'is...()' or 'has...()'
        Open

            public function getNavigable3d()
            {
                return $this->navigable3d;
            }
        Severity: Minor
        Found in FML/ManiaLink.php by phpmd

        BooleanGetMethodName

        Since: 0.2

        Looks for methods named 'getX()' with 'boolean' as the return type. The convention is to name these methods 'isX()' or 'hasX()'.

        Example

        class Foo {
            /**
             * @return boolean
             */
            public function getFoo() {} // bad
            /**
             * @return bool
             */
            public function isFoo(); // ok
            /**
             * @return boolean
             */
            public function getFoo($bar); // ok, unless checkParameterizedMethods=true
        }

        Source https://phpmd.org/rules/naming.html#booleangetmethodname

        Line exceeds 120 characters; contains 121 characters
        Open

                    // backwards-compatibility (version has been introduced later, if it's a string it's supposed to be the name)
        Severity: Minor
        Found in FML/ManiaLink.php by phpcodesniffer

        Line exceeds 120 characters; contains 125 characters
        Open

             * @param bool         $echo        (optional) If the XML text should be echoed and the Content-Type header should be set
        Severity: Minor
        Found in FML/ManiaLink.php by phpcodesniffer

        There are no issues that match your filters.

        Category
        Status