ama-team/php-projection-framework

View on GitHub
src/Filesystem/Pattern.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid using AmaTeam\Image\Projection\Filesystem\sizeof() function in while loops.
Open

        while (sizeof($candidates) > 0) {
            /** @var Chunk $chunk */
            $chunk = array_shift($candidates);
            if ($chunk->getType() !== Chunk::TYPE_EXACT_MATCH) {
                break;
Severity: Minor
Found in src/Filesystem/Pattern.php by phpmd

CountInLoopExpression

Since: 2.7.0

Using count/sizeof in loops expressions is considered bad practice and is a potential source of many bugs, especially when the loop manipulates an array, as count happens on each iteration.

Example

class Foo {

  public function bar()
  {
    $array = array();

    for ($i = 0; count($array); $i++) {
      // ...
    }
  }
}

Source https://phpmd.org/rules/design.html#countinloopexpression

There are no issues that match your filters.

Category
Status