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

20 lines
323 B
PHP

<?php
namespace Knp\Bundle\MarkdownBundle\Tests\Performance;
use Knp\Bundle\MarkdownBundle\Parser\Preset\Min as Parser;
/**
* Run tests with minimal-featured Markdown Parser
*/
class Min extends Base
{
/**
* @return Parser
*/
protected function getParser()
{
return new Parser();
}
}