PageRenderTime 66ms CodeModel.GetById 31ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://github.com/thaberkern/TaskBoxx
PHP | 19 lines | 10 code | 3 blank | 6 comment | 0 complexity | a3446b5c19e2439876d1b3118c0b713b 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\Max as Parser;
  4. /**
  5. * Run tests with full-featured Markdown Parser
  6. */
  7. class Max extends Base
  8. {
  9. /**
  10. * @return Parser
  11. */
  12. protected function getParser()
  13. {
  14. return new Parser();
  15. }
  16. }