PageRenderTime 50ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/src/Bundle/Knplabs/Bundle/MarkdownBundle/Tests/Performance/Min.php

https://github.com/thaberkern/TaskBoxx
PHP | 19 lines | 10 code | 3 blank | 6 comment | 0 complexity | 9458c5a74386a28a353a6d5cecce62af MD5 | raw file
Possible License(s): LGPL-2.1, LGPL-3.0, MIT, BSD-3-Clause, Apache-2.0
  1. <?php
  2. namespace Knplabs\Bundle\MarkdownBundle\Tests\Performance;
  3. use Knplabs\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. }