PHP reflection trivia #2

Warning message

The Webform.com service is due to shut down in 2023. Submissions to this form will soon be disabled. See the Webform.com blog for more information.
What is 7 + 10?
<?php

error_reporting(E_ALL | E_STRICT);

class Psr0ClassReflector extends ReflectionClass {
  function __construct($x) {
  }
}

$x = new Psr0ClassReflector('foobar broken class name');
var_dump($x->getFileName());

Compared to https://chx.webform.com/form/1444/webform the only change is that we use getFileName instead of getName.