1
0
Fork 0
php-language-server/validation/frameworks/broken/forLoopReference1.php

9 lines
152 B
PHP

<?php
class A {
function b() {
for ($collection = $this; null !== $collection; $collection = $collection->getParent()) {
}
}
}