PageRenderTime 55ms CodeModel.GetById 28ms RepoModel.GetById 0ms app.codeStats 0ms

/Tests/Performance/Min.php

http://github.com/KnpLabs/KnpMarkdownBundle
PHP | 19 lines | 10 code | 3 blank | 6 comment | 0 complexity | 2da682765b688c0fb50791701c44fee2 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. <?php
  2. namespace Knp\Bundle\MarkdownBundle\Tests\Performance;
  3. use Knp\Bundle\MarkdownBundle\Parser\Preset\Min as Parser;
  4. /**
  5. * Run tests with minimal-featured Markdown Parser
  6. */
  7. class Min extends Base
  8. {
  9. /**
  10. * @return Parser
  11. */
  12. protected function getParser()
  13. {
  14. return new Parser();
  15. }
  16. }