ApaiIO\ResponseTransformer\Xslt::__construct PHP Метод

__construct() публичный метод

Constructor
public __construct ( string $xslt )
$xslt string
    public function __construct($xslt)
    {
        $xsl = new \XSLTProcessor();
        $xsldoc = new \DOMDocument();
        $xsldoc->loadXML($xslt);
        $xsl->importStyleSheet($xsldoc);
        $this->xsl = $xsl;
    }