PageRenderTime 63ms CodeModel.GetById 29ms RepoModel.GetById 1ms app.codeStats 0ms

/Tests/Performance/Max.php

http://github.com/KnpLabs/KnpMarkdownBundle
PHP | 19 lines | 10 code | 3 blank | 6 comment | 0 complexity | b2a3260784f5f49e3c822fa5cd6500ef 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\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. }