01Locates loop-invariant code that can be moved outside the loop scope
0245 GitHub stars
03Detects O(n²) nested loop searches and suggests O(n) indexed lookups
04Flags expensive in-loop operations like database flushes or API calls for batching
05Identifies redundant iterations and suggests single-pass transformations
06Recommends modern PHP array functions over verbose manual loops for cleaner code