name = $name; } /** * Perform a check of the specification and throw an exception if invalid. * * @throws MissingExtension */ public function check() : void { if (!extension_loaded($this->name)) { throw new MissingExtension($this->name); } } }