MPOS/php-mpos

View on GitHub
include/lib/swiftmailer/classes/Swift/Transport/EsmtpTransport.php

Summary

Maintainability
B
5 hrs
Test Coverage

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

class Swift_Transport_EsmtpTransport extends Swift_Transport_AbstractSmtpTransport implements Swift_Transport_SmtpAgent
{
    /**
     * ESMTP extension handlers.
     *
Severity: Minor
Found in include/lib/swiftmailer/classes/Swift/Transport/EsmtpTransport.php - About 2 hrs to fix

    Method _doHeloCommand has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function _doHeloCommand()
        {
            try {
                $response = $this->executeCommand(
                    sprintf("EHLO %s\r\n", $this->_domain), array(250)
    Severity: Minor
    Found in include/lib/swiftmailer/classes/Swift/Transport/EsmtpTransport.php - About 1 hr to fix

      Function _doHeloCommand has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function _doHeloCommand()
          {
              try {
                  $response = $this->executeCommand(
                      sprintf("EHLO %s\r\n", $this->_domain), array(250)
      Severity: Minor
      Found in include/lib/swiftmailer/classes/Swift/Transport/EsmtpTransport.php - About 55 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 __call has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          public function __call($method, $args)
          {
              foreach ($this->_handlers as $handler) {
                  if (in_array(strtolower($method),
                      array_map('strtolower', (array) $handler->exposeMixinMethods())
      Severity: Minor
      Found in include/lib/swiftmailer/classes/Swift/Transport/EsmtpTransport.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

      There are no issues that match your filters.

      Category
      Status