PHP reflection trivia

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 8 + 6?
<?php

error_reporting(E_ALL | E_STRICT);

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

$x = new Psr0ClassReflector('foobar broken class name');
var_dump($x->getName());
Ps. don't forget to fill in PHP reflection trivia #2 as well.