fixate/pw-mvc-boilerplate

View on GitHub
core/View.php

Summary

Maintainability
B
5 hrs
Test Coverage

Function __call has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

    public function __call($method, $args)
    {
        if (property_exists(__CLASS__, $method) && is_callable($method)) {
            return call_user_func_array(array($this, $method), $args);
        } else {
Severity: Minor
Found in core/View.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_file has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function render_file($file, $_data = array(), $fallback = null)
    {
        if (!isset($this->data)) {
            $this->data = array();
        }
Severity: Minor
Found in core/View.php - About 1 hr to fix

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

        public function assets($path, $use_min = true)
        {
            $is_production = Environment::is_production();
            if ($is_production) {
                // If use MD5# manifest in use get proper path
    Severity: Minor
    Found in core/View.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 render_file has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function render_file($file, $_data = array(), $fallback = null)
        {
            if (!isset($this->data)) {
                $this->data = array();
            }
    Severity: Minor
    Found in core/View.php - About 35 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 resolve_view_path has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function resolve_view_path($file)
        {
            if (!($base_path = $this->base_path)) {
                $base_path = f8\Paths::resolve(f8\Paths::join(dirname(__FILE__), '../views'));
            }
    Severity: Minor
    Found in core/View.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

    There are no issues that match your filters.

    Category
    Status