marcelog/PAGI

View on GitHub
src/PAGI/Client/AbstractClient.php

Summary

Maintainability
D
2 days
Test Coverage

AbstractClient has 62 functions (exceeds 20 allowed). Consider refactoring.
Open

abstract class AbstractClient implements IClient
{
    /**
     * PSR-3 logger.
     * @var LoggerInterface
Severity: Major
Found in src/PAGI/Client/AbstractClient.php - About 1 day to fix

    File AbstractClient.php has 515 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /**
     * An abstract AGI client.
     *
     * PHP Version 5
    Severity: Major
    Found in src/PAGI/Client/AbstractClient.php - About 1 day to fix

      The class AbstractClient has 39 public methods. Consider refactoring AbstractClient to keep number of public methods under 10.
      Open

      abstract class AbstractClient implements IClient
      {
          /**
           * PSR-3 logger.
           * @var LoggerInterface
      Severity: Minor
      Found in src/PAGI/Client/AbstractClient.php by phpmd

      TooManyPublicMethods

      Since: 0.1

      A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

      By default it ignores methods starting with 'get' or 'set'.

      Example

      Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

      The class AbstractClient has an overall complexity of 93 which is very high. The configured complexity threshold is 50.
      Open

      abstract class AbstractClient implements IClient
      {
          /**
           * PSR-3 logger.
           * @var LoggerInterface
      Severity: Minor
      Found in src/PAGI/Client/AbstractClient.php by phpmd

      The class AbstractClient has 44 non-getter- and setter-methods. Consider refactoring AbstractClient to keep number of methods under 25.
      Open

      abstract class AbstractClient implements IClient
      {
          /**
           * PSR-3 logger.
           * @var LoggerInterface
      Severity: Minor
      Found in src/PAGI/Client/AbstractClient.php by phpmd

      TooManyMethods

      Since: 0.1

      A class with too many methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

      By default it ignores methods starting with 'get' or 'set'.

      The default was changed from 10 to 25 in PHPMD 2.3.

      Example

      Source https://phpmd.org/rules/codesize.html#toomanymethods

      The class AbstractClient has 55 public methods and attributes. Consider reducing the number of public items to less than 45.
      Open

      abstract class AbstractClient implements IClient
      {
          /**
           * PSR-3 logger.
           * @var LoggerInterface
      Severity: Minor
      Found in src/PAGI/Client/AbstractClient.php by phpmd

      ExcessivePublicCount

      Since: 0.1

      A large number of public methods and attributes declared in a class can indicate the class may need to be broken up as increased effort will be required to thoroughly test it.

      Example

      public class Foo {
          public $value;
          public $something;
          public $var;
          // [... more more public attributes ...]
      
          public function doWork() {}
          public function doMoreWork() {}
          public function doWorkAgain() {}
          // [... more more public methods ...]
      }

      Source https://phpmd.org/rules/codesize.html#excessivepubliccount

      Method record has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          public function record($file, $format, $escapeDigits, $maxRecordTime = -1, $silence = false)
      Severity: Minor
      Found in src/PAGI/Client/AbstractClient.php - About 35 mins to fix

        The class AbstractClient has a coupling between objects value of 20. Consider to reduce the number of dependencies under 13.
        Open

        abstract class AbstractClient implements IClient
        {
            /**
             * PSR-3 logger.
             * @var LoggerInterface
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        CouplingBetweenObjects

        Since: 1.1.0

        A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability

        Example

        class Foo {
            /**
             * @var \foo\bar\X
             */
            private $x = null;
        
            /**
             * @var \foo\bar\Y
             */
            private $y = null;
        
            /**
             * @var \foo\bar\Z
             */
            private $z = null;
        
            public function setFoo(\Foo $foo) {}
            public function setBar(\Bar $bar) {}
            public function setBaz(\Baz $baz) {}
        
            /**
             * @return \SplObjectStorage
             * @throws \OutOfRangeException
             * @throws \InvalidArgumentException
             * @throws \ErrorException
             */
            public function process(\Iterator $it) {}
        
            // ...
        }

        Source https://phpmd.org/rules/design.html#couplingbetweenobjects

        Missing class import via use statement (line '854', column '21').
        Open

                $node = new \PAGI\Node\Node();
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        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

        The method hangup has a boolean flag argument $channel, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function hangup($channel = false)
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        BooleanArgumentFlag

        Since: 1.4.0

        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

        Example

        class Foo {
            public function bar($flag = true) {
            }
        }

        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

        The method databaseDeltree has a boolean flag argument $key, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function databaseDeltree($family, $key = false)
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        BooleanArgumentFlag

        Since: 1.4.0

        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

        Example

        class Foo {
            public function bar($flag = true) {
            }
        }

        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

        The method record has a boolean flag argument $silence, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function record($file, $format, $escapeDigits, $maxRecordTime = -1, $silence = false)
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        BooleanArgumentFlag

        Since: 1.4.0

        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

        Example

        class Foo {
            public function bar($flag = true) {
            }
        }

        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

        The method setMusic has a boolean flag argument $class, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function setMusic($enable, $class = false)
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        BooleanArgumentFlag

        Since: 1.4.0

        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

        Example

        class Foo {
            public function bar($flag = true) {
            }
        }

        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

        The method getFullVariable has a boolean flag argument $channel, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function getFullVariable($name, $channel = false)
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        BooleanArgumentFlag

        Since: 1.4.0

        A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

        Example

        class Foo {
            public function bar($flag = true) {
            }
        }

        Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

        Missing class import via use statement (line '883', column '27').
        Open

                $controller = new \PAGI\Node\NodeController();
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        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

        The method amd uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
        Open

                    } else {
                        $args[] = '';
                    }
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        ElseExpression

        Since: 1.4.0

        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

        Example

        class Foo
        {
            public function bar($flag)
            {
                if ($flag) {
                    // one branch
                } else {
                    // another branch
                }
            }
        }

        Source https://phpmd.org/rules/cleancode.html#elseexpression

        The method readEnvironmentVariable uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
        Open

                } else {
                    $this->variables[$key] = $value;
                }
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        ElseExpression

        Since: 1.4.0

        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

        Example

        class Foo
        {
            public function bar($flag)
            {
                if ($flag) {
                    // one branch
                } else {
                    // another branch
                }
            }
        }

        Source https://phpmd.org/rules/cleancode.html#elseexpression

        Avoid using static access to class '\PAGI\Logger\Asterisk\Impl\AsteriskLoggerImpl' in method 'getAsteriskLogger'.
        Open

                return AsteriskLoggerImpl::getLogger($this);
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

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

                $timeout = false;
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.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 excessively long variable names like $channelVariablesInstance. Keep variable name length under 20.
        Open

            protected $channelVariablesInstance = false;
        Severity: Minor
        Found in src/PAGI/Client/AbstractClient.php by phpmd

        LongVariable

        Since: 0.2

        Detects when a field, formal or local variable is declared with a long name.

        Example

        class Something {
            protected $reallyLongIntName = -3; // VIOLATION - Field
            public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
                $otherReallyLongName = -5; // VIOLATION - Local
                for ($interestingIntIndex = 0; // VIOLATION - For
                     $interestingIntIndex < 10;
                     $interestingIntIndex++ ) {
                }
            }
        }

        Source https://phpmd.org/rules/naming.html#longvariable

        There are no issues that match your filters.

        Category
        Status