XaBerr/JUICE

View on GitHub
JATE/dist/jate/modules/ExternalModules/vendor/pug-php/pug/src/Jade/Compiler.php

Summary

Maintainability
A
2 hrs
Test Coverage

Function createStatements has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

    protected function createStatements()
    {
        if (func_num_args() === 0) {
            throw new \InvalidArgumentException('No Arguments provided', 9);
        }

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 setOptions has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function setOptions($options)
    {
        $optionTypes = array(
            'prettyprint' => 'boolean',
            'phpSingleLine' => 'boolean',

    Function handleString has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        public function handleString($input)
        {
            $result = array();
            $resultsString = array();
    
    

    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

    Missing class import via use statement (line '213', column '23').
    Open

                throw new \BadMethodCallException(sprintf('Method %s do not exists', $method), 7);

    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

    Missing class import via use statement (line '293', column '31').
    Open

                        throw new \ErrorException('Unexpected value: ' . $match[2], 8);

    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

    Missing class import via use statement (line '154', column '27').
    Open

                    throw new \InvalidArgumentException("$option is not a valid option name.", 28);

    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

    Missing class import via use statement (line '344', column '23').
    Open

                throw new \InvalidArgumentException('No Arguments provided', 9);

    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

    Avoid unused local variables such as '$quote'.
    Open

                    $quote = substr($match[1], 0, 1);

    UnusedLocalVariable

    Since: 0.2

    Detects when a local variable is declared and/or assigned, but not used.

    Example

    class Foo {
        public function doSomething()
        {
            $i = 5; // Unused
        }
    }

    Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable

    There are no issues that match your filters.

    Category
    Status