KnpMarkdownBundle/Tests/Performance/Light.php
2011-07-03 11:30:09 +02:00

20 lines
325 B
PHP

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