yiisoft/yii2

View on GitHub
framework/caching/FileCache.php

Summary

Maintainability
B
5 hrs
Test Coverage

Function gcRecursive has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
Open

    protected function gcRecursive($path, $expiredOnly)
    {
        if (($handle = opendir($path)) !== false) {
            while (($file = readdir($handle)) !== false) {
                if (strncmp($file, '.', 1) === 0) {
Severity: Minor
Found in framework/caching/FileCache.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

Avoid deeply nested control flow statements.
Open

                        if (!@rmdir($fullPath)) {
                            $error = error_get_last();
                            Yii::warning("Unable to remove directory '{$fullPath}': {$error['message']}", __METHOD__);
                        }
Severity: Major
Found in framework/caching/FileCache.php - About 45 mins to fix

    Function setValue has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function setValue($key, $value, $duration)
        {
            $this->gc();
            $cacheFile = $this->getCacheFile($key);
            if ($this->directoryLevel > 0) {
    Severity: Minor
    Found in framework/caching/FileCache.php - About 45 mins to fix

    Cognitive Complexity

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

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

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

    Further reading

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

        protected function getCacheFile($normalizedKey)
        {
            $cacheKey = $normalizedKey;
    
            if ($this->keyPrefix !== '') {
    Severity: Minor
    Found in framework/caching/FileCache.php - About 35 mins to fix

    Cognitive Complexity

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

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

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

    Further reading

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

        protected function gcRecursive($path, $expiredOnly)
        {
            if (($handle = opendir($path)) !== false) {
                while (($file = readdir($handle)) !== false) {
                    if (strncmp($file, '.', 1) === 0) {
    Severity: Minor
    Found in framework/caching/FileCache.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

    Remove error control operator '@' on line 277.
    Open

        protected function gcRecursive($path, $expiredOnly)
        {
            if (($handle = opendir($path)) !== false) {
                while (($file = readdir($handle)) !== false) {
                    if (strncmp($file, '.', 1) === 0) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 114.
    Open

        protected function getValue($key)
        {
            $cacheFile = $this->getCacheFile($key);
    
            if (@filemtime($cacheFile) > time()) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 101.
    Open

        public function exists($key)
        {
            $cacheFile = $this->getCacheFile($this->buildKey($key));
    
            return @filemtime($cacheFile) > time();
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 143.
    Open

        protected function setValue($key, $value, $duration)
        {
            $this->gc();
            $cacheFile = $this->getCacheFile($key);
            if ($this->directoryLevel > 0) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    The method gc has a boolean flag argument $force, which is a certain sign of a Single Responsibility Principle violation.
    Open

        public function gc($force = false, $expiredOnly = true)
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    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

    Remove error control operator '@' on line 118.
    Open

        protected function getValue($key)
        {
            $cacheFile = $this->getCacheFile($key);
    
            if (@filemtime($cacheFile) > time()) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 120.
    Open

        protected function getValue($key)
        {
            $cacheFile = $this->getCacheFile($key);
    
            if (@filemtime($cacheFile) > time()) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 153.
    Open

        protected function setValue($key, $value, $duration)
        {
            $this->gc();
            $cacheFile = $this->getCacheFile($key);
            if ($this->directoryLevel > 0) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 159.
    Open

        protected function setValue($key, $value, $duration)
        {
            $this->gc();
            $cacheFile = $this->getCacheFile($key);
            if ($this->directoryLevel > 0) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 197.
    Open

        protected function deleteValue($key)
        {
            $cacheFile = $this->getCacheFile($key);
    
            return @unlink($cacheFile);
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 278.
    Open

        protected function gcRecursive($path, $expiredOnly)
        {
            if (($handle = opendir($path)) !== false) {
                while (($file = readdir($handle)) !== false) {
                    if (strncmp($file, '.', 1) === 0) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 117.
    Open

        protected function getValue($key)
        {
            $cacheFile = $this->getCacheFile($key);
    
            if (@filemtime($cacheFile) > time()) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 119.
    Open

        protected function getValue($key)
        {
            $cacheFile = $this->getCacheFile($key);
    
            if (@filemtime($cacheFile) > time()) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 151.
    Open

        protected function setValue($key, $value, $duration)
        {
            $this->gc();
            $cacheFile = $this->getCacheFile($key);
            if ($this->directoryLevel > 0) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 115.
    Open

        protected function getValue($key)
        {
            $cacheFile = $this->getCacheFile($key);
    
            if (@filemtime($cacheFile) > time()) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    The method gc has a boolean flag argument $expiredOnly, which is a certain sign of a Single Responsibility Principle violation.
    Open

        public function gc($force = false, $expiredOnly = true)
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    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

    Remove error control operator '@' on line 272.
    Open

        protected function gcRecursive($path, $expiredOnly)
        {
            if (($handle = opendir($path)) !== false) {
                while (($file = readdir($handle)) !== false) {
                    if (strncmp($file, '.', 1) === 0) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 149.
    Open

        protected function setValue($key, $value, $duration)
        {
            $this->gc();
            $cacheFile = $this->getCacheFile($key);
            if ($this->directoryLevel > 0) {
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

    Remove error control operator '@' on line 180.
    Open

        protected function addValue($key, $value, $duration)
        {
            $cacheFile = $this->getCacheFile($key);
            if (@filemtime($cacheFile) > time()) {
                return false;
    Severity: Minor
    Found in framework/caching/FileCache.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

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

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

        protected function getCacheFile($normalizedKey)
        {
            $cacheKey = $normalizedKey;
    
            if ($this->keyPrefix !== '') {
    Severity: Minor
    Found in framework/caching/FileCache.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

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

        protected function gcRecursive($path, $expiredOnly)
        {
            if (($handle = opendir($path)) !== false) {
                while (($file = readdir($handle)) !== false) {
                    if (strncmp($file, '.', 1) === 0) {
    Severity: Minor
    Found in framework/caching/FileCache.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

    There are no issues that match your filters.

    Category
    Status