/**
* Returns SplFileInfo instance for the extension's info file.
*
* @return \SplFileInfo
* The object to access a file information of info file.
*
* @see https://www.php.net/manual/class.splfileinfo.php
*/
public function getFileInfo(): \SplFileInfo
{ if (!
isset($this->splFileInfo
)) { $this->splFileInfo =
new \
SplFileInfo($this->root . '/' .
$this->pathname
);
} return $this->splFileInfo;
} /**
* Magic method implementation to serialize the extension object.
*
* @return array
* The names of all variables that should be serialized.
*/
public function __sleep() {