1
0
Fork 0
php-language-server/tests/Validation/cases/forLoopReference1.php

13 lines
208 B
PHP
Raw Normal View History

<?php
class ForLoopReference1 {
public function getThat() {
for ($that = $this; null !== $that; $that = $that->foo()) {
}
}
public function foo() {
return $this;
}
}