imagecms/ImageCMS

View on GitHub
application/modules/CMSFactory/BaseEvents.php

Summary

Maintainability
F
3 days
Test Coverage

BaseEvents has 88 functions (exceeds 20 allowed). Consider refactoring.
Open

abstract class BaseEvents
{

    /**
     * @var array
Severity: Major
Found in application/modules/CMSFactory/BaseEvents.php - About 1 day to fix

File BaseEvents.php has 418 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace CMSFactory;

use Closure;
Severity: Minor
Found in application/modules/CMSFactory/BaseEvents.php - About 6 hrs to fix

Function runFactory has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
Open

    public static function runFactory($eventAlias = null, $cleanQueue = false) {

        (defined('BASEPATH')) OR exit('No direct script access allowed');
        foreach (Events::create()->storage as $storageKey => $value) {
            if ($eventAlias != null && $eventAlias != $storageKey) {
Severity: Minor
Found in application/modules/CMSFactory/BaseEvents.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

Method setListener has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function setListener($callback, $alias = null) {

        if ($alias !== null && $this->key !== null) {
            throw new Exception("Can't declarete both.");
        }
Severity: Minor
Found in application/modules/CMSFactory/BaseEvents.php - About 1 hr to fix

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

    public function setListener($callback, $alias = null) {

        if ($alias !== null && $this->key !== null) {
            throw new Exception("Can't declarete both.");
        }
Severity: Minor
Found in application/modules/CMSFactory/BaseEvents.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

There are no issues that match your filters.

Category
Status