vendor/symfonycasts/reset-password-bundle/src/SymfonyCastsResetPasswordBundle.php line 19

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the SymfonyCasts ResetPasswordBundle package.
  4.  * Copyright (c) SymfonyCasts <https://symfonycasts.com/>
  5.  * For the full copyright and license information, please view the LICENSE
  6.  * file that was distributed with this source code.
  7.  */
  8. namespace SymfonyCasts\Bundle\ResetPassword;
  9. use Symfony\Component\HttpKernel\Bundle\Bundle;
  10. use SymfonyCasts\Bundle\ResetPassword\DependencyInjection\SymfonyCastsResetPasswordExtension;
  11. /**
  12.  * @author Jesse Rushlow <jr@rushlow.dev>
  13.  * @author Ryan Weaver   <ryan@symfonycasts.com>
  14.  */
  15. class SymfonyCastsResetPasswordBundle extends Bundle
  16. {
  17.     public function getContainerExtension()
  18.     {
  19.         if (null === $this->extension) {
  20.             $this->extension = new SymfonyCastsResetPasswordExtension();
  21.         }
  22.         return $this->extension ?: null;
  23.     }
  24. }