Asymptix/Framework

View on GitHub

Showing 720 of 720 total issues

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

class Validator {

    /**
     * Validate field value by regular expression.
     *
Severity: Minor
Found in framework/core/Validator.php by phpmd

The class DBPreparedQuery has 13 public methods. Consider refactoring DBPreparedQuery to keep number of public methods under 10.
Open

class DBPreparedQuery extends DBQuery {

    /**
     * DB query template.
     *
Severity: Minor
Found in framework/db/DBPreparedQuery.php by phpmd

TooManyPublicMethods

Since: 0.1

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

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

Example

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

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

class DBCore {
    /**
     * An array containing all the opened connections.
     *
     * @var array
Severity: Minor
Found in framework/db/DBCore.php by phpmd

TooManyMethods

Since: 0.1

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

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

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

Example

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

The class DBSelector has 11 public methods. Consider refactoring DBSelector to keep number of public methods under 10.
Open

class DBSelector extends \Asymptix\core\BasicObject {
    protected $fieldsList = [
        'conditions' => "",
        'order' => "",
        'offset' => 0,
Severity: Minor
Found in framework/db/DBSelector.php by phpmd

TooManyPublicMethods

Since: 0.1

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

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

Example

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

Function httpRedirect has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

    public static function httpRedirect($url = "", $postData = [], $serialize = true) {
        if (preg_match("#^http[s]?://.+#", $url)) { // absolute url
            if (function_exists("http_redirect")) {
                http_redirect($url);
            } else {
Severity: Minor
Found in framework/web/Http.php - About 3 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function getBouncedEmails has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

    public function getBouncedEmails($delete = true, $number = null) {
        $emails = [];

        for ($i = 1; (is_null($number) ? true : $i <= $number); $i++) {
            $message = $this->getMessage($i);
Severity: Minor
Found in framework/mail/POP.php - About 3 hrs 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 _get has 74 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static function _get($ip, $type, $provider) {
        if (!filter_var($ip, FILTER_VALIDATE_IP)) {
            throw new LocationDetectorException("Invalid IP address.");
        }

Severity: Major
Found in framework/tools/geo/LocationDetector.php - About 2 hrs to fix

    Function go has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

        public function go($debug = false) {
            switch ($this->dbQuery->getType()) {
                case (DBQueryType::SELECT):
                    $this->dbQuery->query = "SELECT * FROM " . static::TABLE_NAME;
                    break;
    Severity: Minor
    Found in framework/db/DBObject.php - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function unsetValueWithComplexName has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function unsetValueWithComplexName(&$array, $complexName) {
            if (!is_array($complexName)) {
                $complexName = self::parseComplexName($complexName);
            }
    
    
    Severity: Minor
    Found in framework/helpers/Naming.php - About 2 hrs 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

    File DBObject.php has 272 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace Asymptix\db;
    
    use Asymptix\core\Tools;
    Severity: Minor
    Found in framework/db/DBObject.php - About 2 hrs to fix

      Function getSQLCondition has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function getSQLCondition($queryCondition, $operator = "") {
              $operator = strtoupper(trim($operator));
              if ($operator === "OR" || $operator === "AND") {
                  if (is_array($queryCondition)) {
                      if ($operator === "AND") {
      Severity: Minor
      Found in framework/db/DBQueryCondition.php - About 2 hrs 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

      Validator has 22 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class Validator {
      
          /**
           * Validate field value by regular expression.
           *
      Severity: Minor
      Found in framework/core/Validator.php - About 2 hrs to fix

        Function getBrowserInfo has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function getBrowserInfo() {
                $browserFullName = $browserShortName = $browserVersion = null;
                $userAgent = self::getUserAgent();
        
                if (empty($userAgent)) {
        Severity: Minor
        Found in framework/web/Browser.php - About 2 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function getValueByComplexName has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function getValueByComplexName($array, $complexName) {
                if (!is_array($complexName)) {
                    $complexName = self::parseComplexName($complexName);
                }
        
        
        Severity: Minor
        Found in framework/helpers/Naming.php - About 2 hrs 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

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

            public static function lowerCaseFirst($str, $encoding = 'utf8') {
                if ($encoding) {
                    $firstLetter = mb_substr(mb_strtoupper($str, $encoding), 0, 1, $encoding);
        
                    return ($firstLetter . mb_substr($str, 1, null, $encoding));
        Severity: Major
        Found in framework/helpers/StringHelper.php and 1 other location - About 2 hrs to fix
        framework/helpers/StringHelper.php on lines 28..38

        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 125.

        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

            public static function upperCaseFirst($str, $encoding = 'utf8') {
                if ($encoding) {
                    $firstLetter = mb_substr(mb_strtoupper($str, $encoding), 0, 1, $encoding);
        
                    return ($firstLetter . mb_substr($str, 1, null, $encoding));
        Severity: Major
        Found in framework/helpers/StringHelper.php and 1 other location - About 2 hrs to fix
        framework/helpers/StringHelper.php on lines 51..61

        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 125.

        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

        Method getBrowserInfo has 54 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public static function getBrowserInfo() {
                $browserFullName = $browserShortName = $browserVersion = null;
                $userAgent = self::getUserAgent();
        
                if (empty($userAgent)) {
        Severity: Major
        Found in framework/web/Browser.php - About 2 hrs to fix

          Method checkParameterTypes has 51 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              private static function checkParameterTypes($params, $types) {
                  if (count($params) != strlen($types)) {
                      throw new DBCoreException(
                          "Number of types is not equal parameters number"
                      );
          Severity: Major
          Found in framework/db/DBPreparedQuery.php - About 2 hrs to fix

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

                function http_redirect($url, $params = array(), $session = false) {
                    $paramsString = "";
                    foreach ($params as $key => $value) {
                        $paramsString .= "&" . $key . "=" . $value;
                    }
            Severity: Major
            Found in modules/http.php and 1 other location - About 2 hrs to fix
            framework/web/Http.php on lines 27..41

            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 121.

            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

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

                public static function http_redirect($url, $params = [], $session = false) {
                    $paramsString = "";
                    foreach ($params as $key => $value) {
                        $paramsString.= "&" . $key . "=" . $value;
                    }
            Severity: Major
            Found in framework/web/Http.php and 1 other location - About 2 hrs to fix
            modules/http.php on lines 22..36

            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 121.

            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

            Severity
            Category
            Status
            Source
            Language