- Output for 8.1.32, 8.2.0 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
<?php declare(strict_types = 1);
final class SkipFirstClassCallableInDo
{
public function getSubscribedEvents()
{
do {
} while ($this->textElement(...));
}
public function textElement()
{
return 1;
}
}