vendor/heimrichhannot/contao-utils-bundle/src/HeimrichHannotContaoUtilsBundle.php line 14

Open in your IDE?
  1. <?php
  2. /*
  3.  * Copyright (c) 2021 Heimrich & Hannot GmbH
  4.  *
  5.  * @license LGPL-3.0-or-later
  6.  */
  7. namespace HeimrichHannot\UtilsBundle;
  8. use HeimrichHannot\UtilsBundle\DependencyInjection\UtilsBundleExtension;
  9. use Symfony\Component\HttpKernel\Bundle\Bundle;
  10. class HeimrichHannotContaoUtilsBundle extends Bundle
  11. {
  12.     public function getContainerExtension()
  13.     {
  14.         return new UtilsBundleExtension();
  15.     }
  16. }