vendor/knpuniversity/oauth2-client-bundle/src/KnpUOAuth2ClientBundle.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * OAuth2 Client Bundle
  4.  * Copyright (c) KnpUniversity <http://knpuniversity.com/>
  5.  *
  6.  * For the full copyright and license information, please view the LICENSE
  7.  * file that was distributed with this source code.
  8.  */
  9. namespace KnpU\OAuth2ClientBundle;
  10. use KnpU\OAuth2ClientBundle\DependencyInjection\KnpUOAuth2ClientExtension;
  11. use Symfony\Component\HttpKernel\Bundle\Bundle;
  12. class KnpUOAuth2ClientBundle extends Bundle
  13. {
  14.     /**
  15.      * Overridden to allow for the custom extension alias.
  16.      *
  17.      * @return KnpUOAuth2ClientExtension
  18.      */
  19.     public function getContainerExtension()
  20.     {
  21.         if (null === $this->extension) {
  22.             return new KnpUOAuth2ClientExtension();
  23.         }
  24.         return $this->extension;
  25.     }
  26. }