longitude-one/doctrine-spatial

View on GitHub
lib/LongitudeOne/Spatial/PHP/Types/AbstractPolygon.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

Avoid using LongitudeOne\Spatial\PHP\Types\count() function in for loops.
Open

        for ($i = 0; $i < count($this->rings); ++$i) {
            $rings[] = $this->getRing($i);
        }

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

Line exceeds 120 characters; contains 133 characters
Open

     * @param null|int                                                                     $srid  Spatial Reference System Identifier

Line exceeds 120 characters; contains 133 characters
Open

     * @param (float|int)[][]|LineStringInterface|MultiPointInterface|PointInterface[]|PolygonInterface $ring Ring to add to geometry

There are no issues that match your filters.

Category
Status