PageRenderTime 59ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/bundle/Bundle.php

https://github.com/casoetan/ServerGroveLiveChat
PHP | 24 lines | 14 code | 4 blank | 6 comment | 0 complexity | 855d310e7e0e9ea44abf1cab48eff036 MD5 | raw file
Possible License(s): LGPL-2.1, LGPL-3.0, ISC, BSD-3-Clause
  1. <?php
  2. namespace {{ namespace }};
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. class {{ bundle }} extends Bundle
  5. {
  6. /**
  7. * {@inheritdoc}
  8. */
  9. public function getNamespace()
  10. {
  11. return __NAMESPACE__;
  12. }
  13. /**
  14. * {@inheritdoc}
  15. */
  16. public function getPath()
  17. {
  18. return strtr(__DIR__, '\\', '/');
  19. }
  20. }