edde-framework/edde-framework

View on GitHub
src/Edde/Ext/Container/ContainerFactory.php

Summary

Maintainability
D
2 days
Test Coverage

Function createFactoryList has a Cognitive Complexity of 50 (exceeds 5 allowed). Consider refactoring.
Open

        static public function createFactoryList(array $factoryList): array {
            $factories = [];
            foreach ($factoryList as $name => $factory) {
                $current = null;
                if ($factory instanceof \stdClass) {
Severity: Minor
Found in src/Edde/Ext/Container/ContainerFactory.php - About 7 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

File ContainerFactory.php has 364 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
    declare(strict_types=1);

    namespace Edde\Ext\Container;

Severity: Minor
Found in src/Edde/Ext/Container/ContainerFactory.php - About 4 hrs to fix

Method getDefaultFactoryList has 96 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        static public function getDefaultFactoryList(): array {
            return [
                IContainer::class         => Container::class,
                IRootDirectory::class     => self::exception(sprintf('Root directory is not specified; please register [%s] interface.', IRootDirectory::class)),
                ITempDirectory::class     => self::proxy(IRootDirectory::class, 'directory', [
Severity: Major
Found in src/Edde/Ext/Container/ContainerFactory.php - About 3 hrs to fix

Method createFactoryList has 39 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        static public function createFactoryList(array $factoryList): array {
            $factories = [];
            foreach ($factoryList as $name => $factory) {
                $current = null;
                if ($factory instanceof \stdClass) {
Severity: Minor
Found in src/Edde/Ext/Container/ContainerFactory.php - About 1 hr to fix

There are no issues that match your filters.

Category
Status