src/State/ExecutionTracker.php
Avoid using Workflux\State\count() function in while loops. Open
Open
while (str_word_count($loop_path) > count($this->state_machine->getStates())) {
$suffix_tree = $tree_builder->build($loop_path.'$');
$loop_path = trim($suffix_tree->findLongestRepetition());
}
- Read upRead up
- 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++) {
// ...
}
}
}