PageRenderTime 42ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/src/ServerGrove/SGLiveChatBundle/SGLiveChatBundle.php

https://github.com/casoetan/ServerGroveLiveChat
PHP | 26 lines | 15 code | 5 blank | 6 comment | 0 complexity | 4c1be6ebf6a4be5727e65dfc932180d4 MD5 | raw file
Possible License(s): LGPL-2.1, LGPL-3.0, ISC, BSD-3-Clause
  1. <?php
  2. namespace ServerGrove\SGLiveChatBundle;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. class SGLiveChatBundle 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. }