app/Plugin/Auth0/Bundle/Auth0Bundle.php line 19

Open in your IDE?
  1. <?php
  2. /**
  3.  * This file is part of Auth0
  4.  *
  5.  * Copyright(c) Akira Kurozumi <info@a-zumi.net>
  6.  *
  7.  *  https://a-zumi.net
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Plugin\Auth0\Bundle;
  13. use Plugin\Auth0\DependencyInjection\Auth0Extension;
  14. use Symfony\Component\HttpKernel\Bundle\Bundle;
  15. class Auth0Bundle extends Bundle
  16. {
  17.     public function getContainerExtension()
  18.     {
  19.         return new Auth0Extension();
  20.     }
  21. }