Thanks to visit codestin.com
Credit goes to codeclimate.com

vpietri/magento2-developer-quickdevbar

View on GitHub
Console/Command/Database.php

Summary

Maintainability
A
2 hrs
Test Coverage

Method execute has 43 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function execute(InputInterface $input, OutputInterface $output)
    {

        $connection = $this->resource->getConnection();
        $tableName = $input->getArgument(self::DB_TABLENAME);
Severity: Minor
Found in Console/Command/Database.php - About 1 hr to fix

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

        protected function execute(InputInterface $input, OutputInterface $output)
        {
    
            $connection = $this->resource->getConnection();
            $tableName = $input->getArgument(self::DB_TABLENAME);
    Severity: Minor
    Found in Console/Command/Database.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

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

            if(preg_match_all('/.*COMMENT[\s=]\'(.*)\'/', $createTable, $matchComment)) {
    Severity: Minor
    Found in Console/Command/Database.php by phpmd

    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

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

            $createTableComment = [self::DDL_COMMENT_TABLE_KEY => $tableName . ' Table'];
    Severity: Minor
    Found in Console/Command/Database.php by phpmd

    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