/Tests/Performance/Max.php
http://github.com/KnpLabs/KnpMarkdownBundle · PHP · 19 lines · 10 code · 3 blank · 6 comment · 0 complexity · b2a3260784f5f49e3c822fa5cd6500ef MD5 · raw file
- <?php
- namespace Knp\Bundle\MarkdownBundle\Tests\Performance;
- use Knp\Bundle\MarkdownBundle\Parser\Preset\Max as Parser;
- /**
- * Run tests with full-featured Markdown Parser
- */
- class Max extends Base
- {
- /**
- * @return Parser
- */
- protected function getParser()
- {
- return new Parser();
- }
- }