KnpMarkdownBundle/tests/Performance/Min.php

20 lines
323 B
PHP
Raw Normal View History

<?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();
}
2010-07-22 11:20:38 +02:00
}