Astrotomic/laravel-monolog-config

View on GitHub
src/MonologConfig/MonologConfigurator.php

Summary

Maintainability
A
3 hrs
Test Coverage

MonologConfigurator has 23 functions (exceeds 20 allowed). Consider refactoring.
Open

class MonologConfigurator
{
    protected $monolog;

    protected $config;
Severity: Minor
Found in src/MonologConfig/MonologConfigurator.php - About 2 hrs to fix

    Function pushHandler has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function pushHandler($handler, array $config)
        {
            $method = $method = 'get'.Str::studly($handler).'Handler';
            if (method_exists($this, $method)) {
                try {
    Severity: Minor
    Found in src/MonologConfig/MonologConfigurator.php - About 45 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

    Missing class import via use statement (line '187', column '24').
    Open

            $mongodb = new \MongoDB\Client($connection);

    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 '340', column '35').
    Open

                    $reflection = new \ReflectionClass($className);

    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 '346', column '19').
    Open

            throw new \RuntimeException('It was not possible to create an instance.');

    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

    There are no issues that match your filters.

    Category
    Status