Showing 1 of 2 total issues
Avoid using AaronHipple\Sampler\count() function in while loops. Open
Open
while (empty($this->fileSamples) && ++$this->fileIndex < count($this->files)) {
$this->setFileSamples();
}
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
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++) {
// ...
}
}
}