PrivateBin/PrivateBin

View on GitHub
lib/I18n.php

Summary

Maintainability
A
3 hrs
Test Coverage

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

class I18n
{
    /**
     * language
     *
Severity: Minor
Found in lib/I18n.php by phpmd

Avoid too many return statements within this method.
Open

                return $n === 1 ? 0 : ($n % 10 >= 2 && $n % 10 <= 4 && ($n % 100 < 10 || $n % 100 >= 20) ? 1 : 2);
Severity: Major
Found in lib/I18n.php - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

                    return $n % 10 === 1 && $n % 100 !== 11 ? 0 : (($n % 10 >= 2 && $n % 100 < 10 || $n % 100 >= 20) ? 1 : 2);
    Severity: Major
    Found in lib/I18n.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                      return $n === 1 ? 0 : (($n === 0 || ($n % 100 > 0 && $n % 100 < 20)) ? 1 : 2);
      Severity: Major
      Found in lib/I18n.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                        return 0;
        Severity: Major
        Found in lib/I18n.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                          return $n % 10 === 1 && $n % 100 != 11 ? 0 : ($n % 10 >= 2 && $n % 10 <= 4 && ($n % 100 < 10 || $n % 100 >= 20) ? 1 : 2);
          Severity: Major
          Found in lib/I18n.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                            return $n % 100 === 1 ? 1 : ($n % 100 === 2 ? 2 : ($n % 100 === 3 || $n % 100 === 4 ? 3 : 0));
            Severity: Major
            Found in lib/I18n.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              return $n !== 1 ? 1 : 0;
              Severity: Major
              Found in lib/I18n.php - About 30 mins to fix

                The method translate() has an NPath complexity of 360. The configured NPath complexity threshold is 200.
                Open

                    public static function translate($messageId, ...$args)
                    {
                        if (empty($messageId)) {
                            return $messageId;
                        }
                Severity: Minor
                Found in lib/I18n.php by phpmd

                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 _getMatchingLanguage() has an NPath complexity of 200. The configured NPath complexity threshold is 200.
                Open

                    protected static function _getMatchingLanguage($acceptedLanguages, $availableLanguages)
                    {
                        $matches = array();
                        $any     = false;
                        foreach ($acceptedLanguages as $acceptedQuality => $acceptedValues) {
                Severity: Minor
                Found in lib/I18n.php by phpmd

                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 translate() has a Cyclomatic Complexity of 11. The configured cyclomatic complexity threshold is 10.
                Open

                    public static function translate($messageId, ...$args)
                    {
                        if (empty($messageId)) {
                            return $messageId;
                        }
                Severity: Minor
                Found in lib/I18n.php by phpmd

                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 _getPluralForm() has a Cyclomatic Complexity of 60. The configured cyclomatic complexity threshold is 10.
                Open

                    protected static function _getPluralForm($n)
                    {
                        switch (self::$_language) {
                            case 'ar':
                                return $n === 0 ? 0 : ($n === 1 ? 1 : ($n === 2 ? 2 : ($n % 100 >= 3 && $n % 100 <= 10 ? 3 : ($n % 100 >= 11 ? 4 : 5))));
                Severity: Minor
                Found in lib/I18n.php by phpmd

                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 _getMatchingLanguage() has a Cyclomatic Complexity of 13. The configured cyclomatic complexity threshold is 10.
                Open

                    protected static function _getMatchingLanguage($acceptedLanguages, $availableLanguages)
                    {
                        $matches = array();
                        $any     = false;
                        foreach ($acceptedLanguages as $acceptedQuality => $acceptedValues) {
                Severity: Minor
                Found in lib/I18n.php by phpmd

                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

                Refactor this function to reduce its Cognitive Complexity from 83 to the 15 allowed.
                Open

                    protected static function _getPluralForm($n)
                Severity: Critical
                Found in lib/I18n.php by sonar-php

                Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

                See

                Reduce the number of returns of this function 11, down to the maximum allowed 3.
                Open

                    protected static function _getPluralForm($n)
                Severity: Major
                Found in lib/I18n.php by sonar-php

                Having too many return statements in a function increases the function's essential complexity because the flow of execution is broken each time a return statement is encountered. This makes it harder to read and understand the logic of the function.

                Noncompliant Code Example

                With the default threshold of 3:

                function myFunction(){ // Noncompliant as there are 4 return statements
                  if (condition1) {
                    return true;
                  } else {
                    if (condition2) {
                      return false;
                    } else {
                      return true;
                    }
                  }
                  return false;
                }
                

                Refactor this function to reduce its Cognitive Complexity from 31 to the 15 allowed.
                Open

                    protected static function _getMatchingLanguage($acceptedLanguages, $availableLanguages)
                Severity: Critical
                Found in lib/I18n.php by sonar-php

                Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

                See

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

                    public static function loadTranslations()
                    {
                        $availableLanguages = self::getAvailableLanguages();
                
                        // check if the lang cookie was set and that language exists
                Severity: Minor
                Found in lib/I18n.php by phpmd

                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

                Merge this if statement with the enclosing one.
                Open

                            if (count($availableLanguages) > 0) {
                Severity: Major
                Found in lib/I18n.php by sonar-php

                Merging collapsible if statements increases the code's readability.

                Noncompliant Code Example

                if (condition1) {
                  if (condition2) {
                    ...
                  }
                }
                

                Compliant Solution

                if (condition1 && condition2) {
                  ...
                }
                

                Remove the unused function parameter "$args".
                Open

                    public static function _($messageId, ...$args)
                Severity: Major
                Found in lib/I18n.php by sonar-php

                Unused parameters are misleading. Whatever the value passed to such parameters is, the behavior will be the same.

                Noncompliant Code Example

                function doSomething($a, $b) { // "$a" is unused
                  return compute($b);
                }
                

                Compliant Solution

                function doSomething($b) {
                  return compute($b);
                }
                

                Exceptions

                Functions in classes that override a class or implement interfaces are ignored.

                class C extends B {
                
                  function doSomething($a, $b) {     // no issue reported on $b
                    compute($a);
                  }
                
                }
                

                See

                • MISRA C++:2008, 0-1-11 - There shall be no unused parameters (named or unnamed) in nonvirtual functions.
                • MISRA C:2012, 2.7 - There should be no unused parameters in functions
                • CERT, MSC12-C. - Detect and remove code that has no effect or is never executed
                • CERT, MSC12-CPP. - Detect and remove code that has no effect

                Remove the unused function parameter "$messageId".
                Open

                    public static function _($messageId, ...$args)
                Severity: Major
                Found in lib/I18n.php by sonar-php

                Unused parameters are misleading. Whatever the value passed to such parameters is, the behavior will be the same.

                Noncompliant Code Example

                function doSomething($a, $b) { // "$a" is unused
                  return compute($b);
                }
                

                Compliant Solution

                function doSomething($b) {
                  return compute($b);
                }
                

                Exceptions

                Functions in classes that override a class or implement interfaces are ignored.

                class C extends B {
                
                  function doSomething($a, $b) {     // no issue reported on $b
                    compute($a);
                  }
                
                }
                

                See

                • MISRA C++:2008, 0-1-11 - There shall be no unused parameters (named or unnamed) in nonvirtual functions.
                • MISRA C:2012, 2.7 - There should be no unused parameters in functions
                • CERT, MSC12-C. - Detect and remove code that has no effect or is never executed
                • CERT, MSC12-CPP. - Detect and remove code that has no effect

                Avoid unused parameters such as '$messageId'.
                Open

                    public static function _($messageId, ...$args)
                Severity: Minor
                Found in lib/I18n.php by phpmd

                UnusedFormalParameter

                Since: 0.2

                Avoid passing parameters to methods or constructors and then not using those parameters.

                Example

                class Foo
                {
                    private function bar($howdy)
                    {
                        // $howdy is not used
                    }
                }

                Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

                Avoid unused parameters such as '$args'.
                Open

                    public static function _($messageId, ...$args)
                Severity: Minor
                Found in lib/I18n.php by phpmd

                UnusedFormalParameter

                Since: 0.2

                Avoid passing parameters to methods or constructors and then not using those parameters.

                Example

                class Foo
                {
                    private function bar($howdy)
                    {
                        // $howdy is not used
                    }
                }

                Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

                Avoid using short method names like I18n::_(). The configured minimum method name length is 3.
                Open

                    public static function _($messageId, ...$args)
                    {
                        return forward_static_call_array('PrivateBin\I18n::translate', func_get_args());
                    }
                Severity: Minor
                Found in lib/I18n.php by phpmd

                ShortMethodName

                Since: 0.2

                Detects when very short method names are used.

                Example

                class ShortMethod {
                    public function a( $index ) { // Violation
                    }
                }

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

                Avoid variables with short names like $n. Configured minimum length is 3.
                Open

                    protected static function _getPluralForm($n)
                Severity: Minor
                Found in lib/I18n.php by phpmd

                ShortVariable

                Since: 0.2

                Detects when a field, local, or parameter has a very short name.

                Example

                class Something {
                    private $q = 15; // VIOLATION - Field
                    public static function main( array $as ) { // VIOLATION - Formal
                        $r = 20 + $this->q; // VIOLATION - Local
                        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                            $r += $this->q;
                        }
                    }
                }

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

                Avoid variables with short names like $q. Configured minimum length is 3.
                Open

                                        $q = (string) ($acceptedQuality * $availableQuality * $matchingGrade);
                Severity: Minor
                Found in lib/I18n.php by phpmd

                ShortVariable

                Since: 0.2

                Detects when a field, local, or parameter has a very short name.

                Example

                class Something {
                    private $q = 15; // VIOLATION - Field
                    public static function main( array $as ) { // VIOLATION - Formal
                        $r = 20 + $this->q; // VIOLATION - Local
                        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                            $r += $this->q;
                        }
                    }
                }

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

                Avoid variables with short names like $b. Configured minimum length is 3.
                Open

                    protected static function _matchLanguage($a, $b)
                Severity: Minor
                Found in lib/I18n.php by phpmd

                ShortVariable

                Since: 0.2

                Detects when a field, local, or parameter has a very short name.

                Example

                class Something {
                    private $q = 15; // VIOLATION - Field
                    public static function main( array $as ) { // VIOLATION - Formal
                        $r = 20 + $this->q; // VIOLATION - Local
                        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                            $r += $this->q;
                        }
                    }
                }

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

                Avoid variables with short names like $a. Configured minimum length is 3.
                Open

                    protected static function _matchLanguage($a, $b)
                Severity: Minor
                Found in lib/I18n.php by phpmd

                ShortVariable

                Since: 0.2

                Detects when a field, local, or parameter has a very short name.

                Example

                class Something {
                    private $q = 15; // VIOLATION - Field
                    public static function main( array $as ) { // VIOLATION - Formal
                        $r = 20 + $this->q; // VIOLATION - Local
                        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                            $r += $this->q;
                        }
                    }
                }

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

                There are no issues that match your filters.

                Category
                Status