ApaiIO\Test\ResponseTransformer\XsltTransformerTest::getSampleXslForTransformation PHP Method

getSampleXslForTransformation() private method

    private function getSampleXslForTransformation()
    {
        return <<<EOF
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:param name="owner" select="'Nicolas Eliaszewicz'"/>
 <xsl:output method="html" encoding="utf-8" indent="no"/>
 <xsl:template match="collection">
  <xsl:apply-templates/>
 </xsl:template>
 <xsl:template match="cd">
  <xsl:value-of select="title"/> by <xsl:value-of select="artist"/> - <xsl:value-of select="year"/>
 </xsl:template>
</xsl:stylesheet>
EOF;
    }