9 lines
152 B
PHP
9 lines
152 B
PHP
|
<?php
|
||
|
|
||
|
class A {
|
||
|
function b() {
|
||
|
for ($collection = $this; null !== $collection; $collection = $collection->getParent()) {
|
||
|
}
|
||
|
}
|
||
|
}
|