hrodic/php-integration-testing

View on GitHub

Showing 7 of 45 total issues

Method create has 12 arguments (exceeds 4 allowed). Consider refactoring.
Open

        string $host,
        int $port,
        string $user,
        string $password,
        string $vHost = '/',
Severity: Major
Found in src/Driver/AMQPConnection.php - About 1 hr to fix

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

        public function consumeMessage(AMQPChannel $channel, string $consumerTag, string $queue, callable $callback, int $timeout = 0): void
    Severity: Minor
    Found in src/Driver/RabbitMQ/RabbitMQService.php - About 35 mins to fix

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

          public function publishMessage(AMQPChannel $channel, string $body, array $properties, string $exchange, string $routingKey): void;
      Severity: Minor
      Found in src/Driver/AMQPService.php - About 35 mins to fix

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

            public function publishMessage(AMQPChannel $channel, string $body, array $properties, string $exchange, string $routingKey): void
        Severity: Minor
        Found in src/Driver/RabbitMQ/RabbitMQService.php - About 35 mins to fix

          Function __construct has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              public function __construct(array $params)
              {
                  if (empty($params)) {
                      throw new TestingException('Configuration parameters are empty');
                  }
          Severity: Minor
          Found in src/PHPUnit/Runner/Extension/Configuration.php - About 35 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

          Function __construct has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              public function __construct(array $params)
              {
                  if ($invalidConfigParams = array_diff_key($params, self::$defaultParams)) {
                      throw new TestingException(
                          'The following elements are not valid AMQP configuration params: ' . json_encode($invalidConfigParams)
          Severity: Minor
          Found in src/PHPUnit/Runner/Extension/AMQPFixtureConfig.php - About 35 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

          Function __construct has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              public function __construct(array $params)
              {
                  if ($invalidConfigParams = array_diff_key($params, self::$defaultParams)) {
                      throw new TestingException(
                          'The following elements are not valid PDO configuration params: ' . json_encode($invalidConfigParams)
          Severity: Minor
          Found in src/PHPUnit/Runner/Extension/PDOFixtureConfig.php - About 35 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

          Severity
          Category
          Status
          Source
          Language