qcubed/framework

View on GitHub
includes/framework/QEmailServer.class.php

Summary

Maintainability
F
1 wk
Test Coverage

Function Send has a Cognitive Complexity of 121 (exceeds 5 allowed). Consider refactoring.
Open

        public static function Send(QEmailMessage $objMessage) {
            $objResource = null;

            if (QEmailServer::$TestMode) {
                // Open up a File Resource to the TestModeDirectory
Severity: Minor
Found in includes/framework/QEmailServer.class.php - About 2 days 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

Method Send has 186 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        public static function Send(QEmailMessage $objMessage) {
            $objResource = null;

            if (QEmailServer::$TestMode) {
                // Open up a File Resource to the TestModeDirectory
Severity: Major
Found in includes/framework/QEmailServer.class.php - About 7 hrs to fix

    File QEmailServer.class.php has 385 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
        /**
         * This EmailServer (and its dependent EmailMessage class) allows the application to send
         * messages via any accessible SMTP server.
         * 
    Severity: Minor
    Found in includes/framework/QEmailServer.class.php - About 5 hrs to fix

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

          abstract class QEmailServer extends QBaseClass {
              /**
               * Server Hostname or IP Address of the server running the SMTP service.
               * Using an IP address is slightly faster, but using a Hostname is easier to manage.
               * Defaults to "localhost".

      Method __set has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              public function __set($strName, $mixValue) {
                  try {
                      switch ($strName) {
                          case 'From'    : return ($this->strFrom = QType::Cast($mixValue, QType::String));
                          case 'ReplyTo'    : return ($this->strReplyTo = QType::Cast($mixValue, QType::String));
      Severity: Minor
      Found in includes/framework/QEmailServer.class.php - About 1 hr to fix

        Avoid too many return statements within this method.
        Open

                                return parent::__get($strName);
        Severity: Major
        Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                          case 'Body': return $this->strBody;
          Severity: Major
          Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                                    return ($this->strSubject = $strSubject);
            Severity: Major
            Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              case 'HtmlBody': return $this->strHtmlBody;
              Severity: Major
              Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                case 'FileArray': return $this->objFileArray;
                Severity: Major
                Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                          return ($this->strHtmlBody = $strHtmlBody);
                  Severity: Major
                  Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                    case 'HasFiles': return (count($this->objFileArray) > 0) ? true : false;
                    Severity: Major
                    Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                      case 'EncodeSubject': return $this->blnEncodeSubject;
                      Severity: Major
                      Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                            case 'EncodeSubject': return ($this->blnEncodeSubject = QType::Cast($mixValue, QType::Boolean));
                        Severity: Major
                        Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                          case 'Subject': return $this->strSubject;
                          Severity: Major
                          Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                                case 'Cc': return ($this->strCc = QType::Cast($mixValue, QType::String));
                            Severity: Major
                            Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                              case 'Bcc': return $this->strBcc;
                              Severity: Major
                              Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                                case 'HeaderArray': return $this->strHeaderArray;
                                Severity: Major
                                Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                                  Avoid too many return statements within this method.
                                  Open

                                                          return ($this->strBody = $strBody);
                                  Severity: Major
                                  Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                                    Avoid too many return statements within this method.
                                    Open

                                                    case 'Cc': return $this->strCc;
                                    Severity: Major
                                    Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                                      Avoid too many return statements within this method.
                                      Open

                                                              return parent::__get($strName);
                                      Severity: Major
                                      Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                                        Avoid too many return statements within this method.
                                        Open

                                                            case 'Bcc': return ($this->strBcc = QType::Cast($mixValue, QType::String));
                                        Severity: Major
                                        Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                                          Avoid too many return statements within this method.
                                          Open

                                                              default: return (parent::__set($strName, $mixValue));
                                          Severity: Major
                                          Found in includes/framework/QEmailServer.class.php - About 30 mins to fix

                                            The method Send() has an NPath complexity of 407743580160000. The configured NPath complexity threshold is 200.
                                            Open

                                                    public static function Send(QEmailMessage $objMessage) {
                                                        $objResource = null;
                                            
                                                        if (QEmailServer::$TestMode) {
                                                            // Open up a File Resource to the TestModeDirectory

                                            NPathComplexity

                                            Since: 0.1

                                            The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                                            Example

                                            class Foo {
                                                function bar() {
                                                    // lots of complicated code
                                                }
                                            }

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

                                            The method Send() has 267 lines of code. Current threshold is set to 100. Avoid really long methods.
                                            Open

                                                    public static function Send(QEmailMessage $objMessage) {
                                                        $objResource = null;
                                            
                                                        if (QEmailServer::$TestMode) {
                                                            // Open up a File Resource to the TestModeDirectory

                                            The method __get() has a Cyclomatic Complexity of 16. The configured cyclomatic complexity threshold is 10.
                                            Open

                                                    public function __get($strName) {
                                                        switch ($strName) {
                                                            case 'From'        : return $this->strFrom;
                                                            case 'ReplyTo'        : return $this->strReplyTo;
                                                            case 'Sender'        : return $this->strSender;

                                            CyclomaticComplexity

                                            Since: 0.1

                                            Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                                            Example

                                            // Cyclomatic Complexity = 11
                                            class Foo {
                                            1   public function example() {
                                            2       if ($a == $b) {
                                            3           if ($a1 == $b1) {
                                                            fiddle();
                                            4           } elseif ($a2 == $b2) {
                                                            fiddle();
                                                        } else {
                                                            fiddle();
                                                        }
                                            5       } elseif ($c == $d) {
                                            6           while ($c == $d) {
                                                            fiddle();
                                                        }
                                            7        } elseif ($e == $f) {
                                            8           for ($n = 0; $n < $h; $n++) {
                                                            fiddle();
                                                        }
                                                    } else {
                                                        switch ($z) {
                                            9               case 1:
                                                                fiddle();
                                                                break;
                                            10              case 2:
                                                                fiddle();
                                                                break;
                                            11              case 3:
                                                                fiddle();
                                                                break;
                                                            default:
                                                                fiddle();
                                                                break;
                                                        }
                                                    }
                                                }
                                            }

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

                                            The method Send() has a Cyclomatic Complexity of 74. The configured cyclomatic complexity threshold is 10.
                                            Open

                                                    public static function Send(QEmailMessage $objMessage) {
                                                        $objResource = null;
                                            
                                                        if (QEmailServer::$TestMode) {
                                                            // Open up a File Resource to the TestModeDirectory

                                            CyclomaticComplexity

                                            Since: 0.1

                                            Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                                            Example

                                            // Cyclomatic Complexity = 11
                                            class Foo {
                                            1   public function example() {
                                            2       if ($a == $b) {
                                            3           if ($a1 == $b1) {
                                                            fiddle();
                                            4           } elseif ($a2 == $b2) {
                                                            fiddle();
                                                        } else {
                                                            fiddle();
                                                        }
                                            5       } elseif ($c == $d) {
                                            6           while ($c == $d) {
                                                            fiddle();
                                                        }
                                            7        } elseif ($e == $f) {
                                            8           for ($n = 0; $n < $h; $n++) {
                                                            fiddle();
                                                        }
                                                    } else {
                                                        switch ($z) {
                                            9               case 1:
                                                                fiddle();
                                                                break;
                                            10              case 2:
                                                                fiddle();
                                                                break;
                                            11              case 3:
                                                                fiddle();
                                                                break;
                                                            default:
                                                                fiddle();
                                                                break;
                                                        }
                                                    }
                                                }
                                            }

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

                                            The method __set() has a Cyclomatic Complexity of 12. The configured cyclomatic complexity threshold is 10.
                                            Open

                                                    public function __set($strName, $mixValue) {
                                                        try {
                                                            switch ($strName) {
                                                                case 'From'    : return ($this->strFrom = QType::Cast($mixValue, QType::String));
                                                                case 'ReplyTo'    : return ($this->strReplyTo = QType::Cast($mixValue, QType::String));

                                            CyclomaticComplexity

                                            Since: 0.1

                                            Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                                            Example

                                            // Cyclomatic Complexity = 11
                                            class Foo {
                                            1   public function example() {
                                            2       if ($a == $b) {
                                            3           if ($a1 == $b1) {
                                                            fiddle();
                                            4           } elseif ($a2 == $b2) {
                                                            fiddle();
                                                        } else {
                                                            fiddle();
                                                        }
                                            5       } elseif ($c == $d) {
                                            6           while ($c == $d) {
                                                            fiddle();
                                                        }
                                            7        } elseif ($e == $f) {
                                            8           for ($n = 0; $n < $h; $n++) {
                                                            fiddle();
                                                        }
                                                    } else {
                                                        switch ($z) {
                                            9               case 1:
                                                                fiddle();
                                                                break;
                                            10              case 2:
                                                                fiddle();
                                                                break;
                                            11              case 3:
                                                                fiddle();
                                                                break;
                                                            default:
                                                                fiddle();
                                                                break;
                                                        }
                                                    }
                                                }
                                            }

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

                                            Missing class import via use statement (line '241', column '18').
                                            Open

                                                                        throw new QEmailException(sprintf('Error in response from AUTH LOGIN: %s', $strResponse));

                                            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 '249', column '18').
                                            Open

                                                                        throw new QEmailException(sprintf('Error in response from AUTH LOGIN: %s', $strResponse));

                                            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 '280', column '15').
                                            Open

                                                            throw new QEmailException(sprintf('Not a valid To address: %s', $objMessage->To));

                                            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 '302', column '18').
                                            Open

                                                                        throw new QEmailException(sprintf('Error Response on RCPT TO: %s', $strResponse));

                                            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 '190', column '16').
                                            Open

                                                                throw new QEmailException(sprintf('Unable to open SMTP connection to: %s %s', QEmailServer::$SmtpServer, QEmailServer::$SmtpPort));

                                            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 '424', column '17').
                                            Open

                                                                    throw new QEmailException(sprintf('Error Response on DATA finish: %s', $strResponse));

                                            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 '179', column '16').
                                            Open

                                                                throw new QEmailException(sprintf('Unable to open Test SMTP connection to: %s', $strFileName));

                                            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 '206', column '17').
                                            Open

                                                                    throw new QEmailException(sprintf('Error Response on Connect: %s', $strResponse));

                                            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 '548', column '29').
                                            Open

                                                        $this->AddAttachment(new QEmailAttachment($strFilePath, $strSpecifiedMimeType, $strSpecifiedFileName));

                                            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 '231', column '17').
                                            Open

                                                                    throw new QEmailException(sprintf('Error in response from AUTH PLAIN: %s', $strResponse));

                                            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 '257', column '18').
                                            Open

                                                                        throw new QEmailException(sprintf('Error in response from AUTH LOGIN: %s', $strResponse));

                                            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 QuotedPrintableEncode has a boolean flag argument $blnSubject, which is a certain sign of a Single Responsibility Principle violation.
                                            Open

                                                    private static function QuotedPrintableEncode($strString, $blnSubject = false) {

                                            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 '222', column '17').
                                            Open

                                                                    throw new QEmailException(sprintf('Error Response on EHLO: %s', $strResponse));

                                            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 '314', column '17').
                                            Open

                                                                    throw new QEmailException(sprintf('Error Response on DATA: %s', $strResponse));

                                            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 '264', column '15').
                                            Open

                                                            throw new QEmailException(sprintf('Not a valid From address: %s', $objMessage->From));

                                            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 '274', column '17').
                                            Open

                                                                    throw new QEmailException(sprintf('Error Response on MAIL FROM: %s', $strResponse));

                                            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 '454', column '15').
                                            Open

                                                            throw new QCallerException('File Not Found: ' . $strFilePath);

                                            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

                                            Avoid assigning values to variables in if clauses and the like (line '329', column '10').
                                            Open

                                                    public static function Send(QEmailMessage $objMessage) {
                                                        $objResource = null;
                                            
                                                        if (QEmailServer::$TestMode) {
                                                            // Open up a File Resource to the TestModeDirectory

                                            IfStatementAssignment

                                            Since: 2.7.0

                                            Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                                            Example

                                            class Foo
                                            {
                                                public function bar($flag)
                                                {
                                                    if ($foo = 'bar') { // possible typo
                                                        // ...
                                                    }
                                                    if ($baz = 0) { // always false
                                                        // ...
                                                    }
                                                }
                                            }

                                            Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

                                            Avoid using static access to class 'QType' in method '__set'.
                                            Open

                                                                case 'Sender'    : return ($this->strSender = QType::Cast($mixValue, QType::String));

                                            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 using static access to class 'QType' in method '__set'.
                                            Open

                                                                    $strHtmlBody = QType::Cast($mixValue, QType::String);

                                            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 using static access to class 'QType' in method '__set'.
                                            Open

                                                                case 'Cc': return ($this->strCc = QType::Cast($mixValue, QType::String));

                                            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 using static access to class 'QType' in method '__set'.
                                            Open

                                                                case 'Bcc': return ($this->strBcc = QType::Cast($mixValue, QType::String));

                                            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

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

                                                        } else {
                                                            fwrite($objResource, sprintf("Content-Type: text/plain; charset=\"%s\"\r\n", $strEncodingType));
                                                            fwrite($objResource, sprintf("Content-Transfer-Encoding: quoted-printable\r\n\r\n"));
                                                            fwrite($objResource, "\r\n" . self::QuotedPrintableEncode($objMessage->Body));
                                                        }

                                            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 'QEmailServer' in method 'IsEmailValid'.
                                            Open

                                                        $strEmailAddressArray = QEmailServer::GetEmailAddresses($strEmailAddress);

                                            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 using static access to class 'QType' in method '__set'.
                                            Open

                                                                case 'To': return ($this->strTo = QType::Cast($mixValue, QType::String));

                                            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 using static access to class 'QEmailServer' in method 'Send'.
                                            Open

                                                        $strAddressToArray = QEmailServer::GetEmailAddresses($objMessage->To);

                                            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 using static access to class 'QType' in method '__set'.
                                            Open

                                                                    $strSubject = trim(QType::Cast($mixValue, QType::String));

                                            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 using static access to class 'QType' in method '__set'.
                                            Open

                                                                case 'EncodeSubject': return ($this->blnEncodeSubject = QType::Cast($mixValue, QType::Boolean));

                                            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

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

                                                        else {
                                                            $strText = preg_replace( '/[^\x21-\x3C\x3E-\x7E\x09\x20]/e', 'sprintf( "=%02X", ord ( "$0" ) ) ;', $strString );
                                                            preg_match_all( '/.{1,73}([^=]{0,2})?/', $strText, $arrMatch );
                                                            $strText = implode( '=' . "\r\n", $arrMatch[0] );
                                                        }

                                            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 'QMimeType' in method '__construct'.
                                            Open

                                                            $this->strMimeType = QMimeType::GetMimeTypeForFile($this->strFilePath);

                                            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

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

                                                        } else {
                                                            $objResource = fsockopen(QEmailServer::$SmtpServer, QEmailServer::$SmtpPort);
                                                            if (!$objResource)
                                                                throw new QEmailException(sprintf('Unable to open SMTP connection to: %s %s', QEmailServer::$SmtpServer, QEmailServer::$SmtpPort));
                                                        }

                                            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 'QEmailServer' in method 'Send'.
                                            Open

                                                        $strAddressCcArray = QEmailServer::GetEmailAddresses($objMessage->Cc);

                                            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 using static access to class 'QType' in method '__set'.
                                            Open

                                                                case 'From'    : return ($this->strFrom = QType::Cast($mixValue, QType::String));

                                            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

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

                                                        } else {
                                                            // Escape leading dots with another dot
                                                            $strText = str_replace("\n.", "\n..", $strText);
                                                        }

                                            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 'QDateTime' in method 'Send'.
                                            Open

                                                        fwrite($objResource, sprintf("Date: %s\r\n", QDateTime::NowToString(QDateTime::FormatRfc5322)));

                                            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 using static access to class 'QEmailServer' in method 'Send'.
                                            Open

                                                        $strAddressArray = QEmailServer::GetEmailAddresses($objMessage->From);

                                            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 using static access to class 'QEmailServer' in method 'Send'.
                                            Open

                                                        $strAddressBccArray = QEmailServer::GetEmailAddresses($objMessage->Bcc);

                                            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 using static access to class 'QType' in method '__set'.
                                            Open

                                                                case 'ReplyTo'    : return ($this->strReplyTo = QType::Cast($mixValue, QType::String));

                                            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 using static access to class 'QType' in method '__set'.
                                            Open

                                                                    $strBody = QType::Cast($mixValue, QType::String);

                                            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

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

                                                            } else {
                                                                fwrite($objResource, sprintf("Subject: %s\r\n", $objMessage->Subject));
                                                            }

                                            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 unused local variables such as '$objArray'.
                                            Open

                                                        foreach ($objArray = $objMessage->HeaderArray as $strKey => $strValue)

                                            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

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                        if (!feof($objResource)) {
                                                            $strResponse = fgets($objResource, 4096);
                                            
                                                            // Iterate through all "250-" responses (stop at "250 ")
                                                            while ((substr($strResponse, 0, 3) == "250") && (substr($strResponse, 0, 4) != "250 "))
                                            Severity: Major
                                            Found in includes/framework/QEmailServer.class.php and 1 other location - About 4 hrs to fix
                                            includes/framework/QEmailServer.class.php on lines 195..207

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 174.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                        if (!feof($objResource)) {
                                                            $strResponse = fgets($objResource, 4096);
                                            
                                                            // Iterate through all "220-" responses (stop at "220 ")
                                                            while ((substr($strResponse, 0, 3) == "220") && (substr($strResponse, 0, 4) != "220 "))
                                            Severity: Major
                                            Found in includes/framework/QEmailServer.class.php and 1 other location - About 4 hrs to fix
                                            includes/framework/QEmailServer.class.php on lines 211..223

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 174.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 7 locations. Consider refactoring.
                                            Open

                                                        if (!feof($objResource)) {
                                                            $strResponse = fgets($objResource, 4096);
                                                            
                                                            // Check for a "250" response
                                                            if (!QEmailServer::$TestMode)
                                            Severity: Major
                                            Found in includes/framework/QEmailServer.class.php and 6 other locations - About 1 hr to fix
                                            includes/framework/QEmailServer.class.php on lines 237..242
                                            includes/framework/QEmailServer.class.php on lines 245..250
                                            includes/framework/QEmailServer.class.php on lines 253..258
                                            includes/framework/QEmailServer.class.php on lines 296..303
                                            includes/framework/QEmailServer.class.php on lines 308..315
                                            includes/framework/QEmailServer.class.php on lines 418..425

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 101.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 7 locations. Consider refactoring.
                                            Open

                                                        if (!feof($objResource)) {
                                                            $strResponse = fgets($objResource, 4096);
                                                            
                                                            // Check for a "250" response
                                                            if (!QEmailServer::$TestMode)
                                            Severity: Major
                                            Found in includes/framework/QEmailServer.class.php and 6 other locations - About 1 hr to fix
                                            includes/framework/QEmailServer.class.php on lines 237..242
                                            includes/framework/QEmailServer.class.php on lines 245..250
                                            includes/framework/QEmailServer.class.php on lines 253..258
                                            includes/framework/QEmailServer.class.php on lines 268..275
                                            includes/framework/QEmailServer.class.php on lines 296..303
                                            includes/framework/QEmailServer.class.php on lines 308..315

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 101.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 7 locations. Consider refactoring.
                                            Open

                                                            if (!feof($objResource)) {
                                                                $strResponse = fgets($objResource, 4096);
                                                                
                                                                // Check for a "250" response
                                                                if (!QEmailServer::$TestMode)
                                            Severity: Major
                                            Found in includes/framework/QEmailServer.class.php and 6 other locations - About 1 hr to fix
                                            includes/framework/QEmailServer.class.php on lines 237..242
                                            includes/framework/QEmailServer.class.php on lines 245..250
                                            includes/framework/QEmailServer.class.php on lines 253..258
                                            includes/framework/QEmailServer.class.php on lines 268..275
                                            includes/framework/QEmailServer.class.php on lines 308..315
                                            includes/framework/QEmailServer.class.php on lines 418..425

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 101.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 7 locations. Consider refactoring.
                                            Open

                                                        if (!feof($objResource)) {
                                                            $strResponse = fgets($objResource, 4096);
                                                            
                                                            // Check for a "354" response
                                                            if (!QEmailServer::$TestMode)
                                            Severity: Major
                                            Found in includes/framework/QEmailServer.class.php and 6 other locations - About 1 hr to fix
                                            includes/framework/QEmailServer.class.php on lines 237..242
                                            includes/framework/QEmailServer.class.php on lines 245..250
                                            includes/framework/QEmailServer.class.php on lines 253..258
                                            includes/framework/QEmailServer.class.php on lines 268..275
                                            includes/framework/QEmailServer.class.php on lines 296..303
                                            includes/framework/QEmailServer.class.php on lines 418..425

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 101.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 7 locations. Consider refactoring.
                                            Open

                                                            if (!feof($objResource)) {
                                                                $strResponse = fgets($objResource, 4096);
                                                                if (!QEmailServer::$TestMode)
                                                                    if ((strpos($strResponse, "334") === false) || (strpos($strResponse, "334") != 0))
                                                                        throw new QEmailException(sprintf('Error in response from AUTH LOGIN: %s', $strResponse));
                                            Severity: Major
                                            Found in includes/framework/QEmailServer.class.php and 6 other locations - About 1 hr to fix
                                            includes/framework/QEmailServer.class.php on lines 245..250
                                            includes/framework/QEmailServer.class.php on lines 253..258
                                            includes/framework/QEmailServer.class.php on lines 268..275
                                            includes/framework/QEmailServer.class.php on lines 296..303
                                            includes/framework/QEmailServer.class.php on lines 308..315
                                            includes/framework/QEmailServer.class.php on lines 418..425

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 101.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 7 locations. Consider refactoring.
                                            Open

                                                            if (!feof($objResource)) {
                                                                 $strResponse = fgets($objResource, 4096);
                                                                if (!QEmailServer::$TestMode)
                                                                    if ((strpos($strResponse, "235") === false) || (strpos($strResponse, "235") != 0))
                                                                        throw new QEmailException(sprintf('Error in response from AUTH LOGIN: %s', $strResponse));
                                            Severity: Major
                                            Found in includes/framework/QEmailServer.class.php and 6 other locations - About 1 hr to fix
                                            includes/framework/QEmailServer.class.php on lines 237..242
                                            includes/framework/QEmailServer.class.php on lines 245..250
                                            includes/framework/QEmailServer.class.php on lines 268..275
                                            includes/framework/QEmailServer.class.php on lines 296..303
                                            includes/framework/QEmailServer.class.php on lines 308..315
                                            includes/framework/QEmailServer.class.php on lines 418..425

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 101.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 7 locations. Consider refactoring.
                                            Open

                                                            if (!feof($objResource)) {
                                                                $strResponse = fgets($objResource, 4096);
                                                                if (!QEmailServer::$TestMode)
                                                                    if ((strpos($strResponse, "334") === false) || (strpos($strResponse, "334") != 0))
                                                                        throw new QEmailException(sprintf('Error in response from AUTH LOGIN: %s', $strResponse));
                                            Severity: Major
                                            Found in includes/framework/QEmailServer.class.php and 6 other locations - About 1 hr to fix
                                            includes/framework/QEmailServer.class.php on lines 237..242
                                            includes/framework/QEmailServer.class.php on lines 253..258
                                            includes/framework/QEmailServer.class.php on lines 268..275
                                            includes/framework/QEmailServer.class.php on lines 296..303
                                            includes/framework/QEmailServer.class.php on lines 308..315
                                            includes/framework/QEmailServer.class.php on lines 418..425

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 101.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                                case 'Body':
                                                                    $strBody = QType::Cast($mixValue, QType::String);
                                                                    $strBody = str_replace("\r", "", $strBody);
                                                                    $strBody = str_replace("\n", "\r\n", $strBody);
                                                                    $strBody = str_replace("\n.", "\n..", $strBody);
                                            Severity: Minor
                                            Found in includes/framework/QEmailServer.class.php and 1 other location - About 40 mins to fix
                                            includes/framework/QEmailServer.class.php on lines 626..631

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 93.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                                case 'HtmlBody':
                                                                    $strHtmlBody = QType::Cast($mixValue, QType::String);
                                                                    $strHtmlBody = str_replace("\r", "", $strHtmlBody);
                                                                    $strHtmlBody = str_replace("\n", "\r\n", $strHtmlBody);
                                                                    $strHtmlBody = str_replace("\n.", "\n..", $strHtmlBody);
                                            Severity: Minor
                                            Found in includes/framework/QEmailServer.class.php and 1 other location - About 40 mins to fix
                                            includes/framework/QEmailServer.class.php on lines 620..625

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 93.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            The method SetHeader is not named in camelCase.
                                            Open

                                                    public function SetHeader($strName, $strValue) {
                                                        $this->strHeaderArray[$strName] = $strValue;
                                                    }

                                            CamelCaseMethodName

                                            Since: 0.2

                                            It is considered best practice to use the camelCase notation to name methods.

                                            Example

                                            class ClassName {
                                                public function get_name() {
                                                }
                                            }

                                            Source

                                            The method Send is not named in camelCase.
                                            Open

                                                    public static function Send(QEmailMessage $objMessage) {
                                                        $objResource = null;
                                            
                                                        if (QEmailServer::$TestMode) {
                                                            // Open up a File Resource to the TestModeDirectory

                                            CamelCaseMethodName

                                            Since: 0.2

                                            It is considered best practice to use the camelCase notation to name methods.

                                            Example

                                            class ClassName {
                                                public function get_name() {
                                                }
                                            }

                                            Source

                                            The method AddAttachment is not named in camelCase.
                                            Open

                                                    public function AddAttachment(QEmailAttachment $objFile) {                        
                                                        $this->objFileArray[$objFile->FileName] = $objFile;
                                                    }

                                            CamelCaseMethodName

                                            Since: 0.2

                                            It is considered best practice to use the camelCase notation to name methods.

                                            Example

                                            class ClassName {
                                                public function get_name() {
                                                }
                                            }

                                            Source

                                            The method GetHeader is not named in camelCase.
                                            Open

                                                    public function GetHeader($strName) {
                                                        if (array_key_exists($strName, $this->strHeaderArray))
                                                            return $this->strHeaderArray[$strName];
                                                        return null;
                                                    }

                                            CamelCaseMethodName

                                            Since: 0.2

                                            It is considered best practice to use the camelCase notation to name methods.

                                            Example

                                            class ClassName {
                                                public function get_name() {
                                                }
                                            }

                                            Source

                                            The method IsEmailValid is not named in camelCase.
                                            Open

                                                    public static function IsEmailValid($strEmailAddress) {
                                                        $strEmailAddressArray = QEmailServer::GetEmailAddresses($strEmailAddress);
                                                        return ((count($strEmailAddressArray) == 1) && ($strEmailAddressArray[0] == $strEmailAddress));  
                                                    }

                                            CamelCaseMethodName

                                            Since: 0.2

                                            It is considered best practice to use the camelCase notation to name methods.

                                            Example

                                            class ClassName {
                                                public function get_name() {
                                                }
                                            }

                                            Source

                                            The method RemoveAttachment is not named in camelCase.
                                            Open

                                                    public function RemoveAttachment($strName) {
                                                        if (array_key_exists($strName, $this->objFileArray))
                                                            unset($this->objFileArray[$strName]);
                                                    }

                                            CamelCaseMethodName

                                            Since: 0.2

                                            It is considered best practice to use the camelCase notation to name methods.

                                            Example

                                            class ClassName {
                                                public function get_name() {
                                                }
                                            }

                                            Source

                                            The method QuotedPrintableEncode is not named in camelCase.
                                            Open

                                                    private static function QuotedPrintableEncode($strString, $blnSubject = false) {
                                                        if ( function_exists('quoted_printable_encode') )
                                                            $strText = quoted_printable_encode($strString);
                                                        else {
                                                            $strText = preg_replace( '/[^\x21-\x3C\x3E-\x7E\x09\x20]/e', 'sprintf( "=%02X", ord ( "$0" ) ) ;', $strString );

                                            CamelCaseMethodName

                                            Since: 0.2

                                            It is considered best practice to use the camelCase notation to name methods.

                                            Example

                                            class ClassName {
                                                public function get_name() {
                                                }
                                            }

                                            Source

                                            The method Attach is not named in camelCase.
                                            Open

                                                    public function Attach($strFilePath, $strSpecifiedMimeType = null, $strSpecifiedFileName = null) {
                                                        $this->AddAttachment(new QEmailAttachment($strFilePath, $strSpecifiedMimeType, $strSpecifiedFileName));
                                                    }

                                            CamelCaseMethodName

                                            Since: 0.2

                                            It is considered best practice to use the camelCase notation to name methods.

                                            Example

                                            class ClassName {
                                                public function get_name() {
                                                }
                                            }

                                            Source

                                            The method RemoveHeader is not named in camelCase.
                                            Open

                                                    public function RemoveHeader($strName) {
                                                        if (array_key_exists($strName, $this->strHeaderArray))
                                                            unset($this->strHeaderArray[$strName]);
                                                    }

                                            CamelCaseMethodName

                                            Since: 0.2

                                            It is considered best practice to use the camelCase notation to name methods.

                                            Example

                                            class ClassName {
                                                public function get_name() {
                                                }
                                            }

                                            Source

                                            The method GetEmailAddresses is not named in camelCase.
                                            Open

                                                    public static function GetEmailAddresses($strAddresses) {
                                                        $strAddressArray = null;
                                            
                                                        // Address Lines cannot have any linebreaks
                                                        if ((strpos($strAddresses, "\r") !== false) ||

                                            CamelCaseMethodName

                                            Since: 0.2

                                            It is considered best practice to use the camelCase notation to name methods.

                                            Example

                                            class ClassName {
                                                public function get_name() {
                                                }
                                            }

                                            Source

                                            There are no issues that match your filters.

                                            Category
                                            Status