KnpMarkdownBundle/tests/Performance/Max.php
2021-11-08 06:24:51 -05:00

20 lines
320 B
PHP

<?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();
}
}