KnpMarkdownBundle/tests/Performance/Light.php

20 lines
325 B
PHP
Raw Normal View History

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