vendor/friendsofsymfony/ckeditor-bundle/src/DependencyInjection/Compiler/TemplatingCompilerPass.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the FOSCKEditor Bundle.
  4.  *
  5.  * (c) 2018 - present  Friends of Symfony
  6.  * (c) 2009 - 2017     Eric GELOEN <geloen.eric@gmail.com>
  7.  *
  8.  * For the full copyright and license information, please read the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace FOS\CKEditorBundle\DependencyInjection\Compiler;
  12. use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
  13. use Symfony\Component\DependencyInjection\ContainerBuilder;
  14. @trigger_error(
  15.     'The '.__NAMESPACE__.'TemplatingCompilerPass is deprecated since 1.x '.
  16.     'and will be removed with the 2.0 release.',
  17.     E_USER_DEPRECATED
  18. );
  19. /**
  20.  * @deprecated since 1.x and will be removed with the 2.0 release.
  21.  *
  22.  * @author GeLo <geloen.eric@gmail.com>
  23.  */
  24. class TemplatingCompilerPass implements CompilerPassInterface
  25. {
  26.     /**
  27.      * {@inheritdoc}
  28.      */
  29.     public function process(ContainerBuilder $container)
  30.     {
  31.         if (!$container->hasDefinition('templating.engine.php')) {
  32.             $container->removeDefinition('fos_ck_editor.templating.helper');
  33.         }
  34.         if (!$container->hasDefinition('twig')) {
  35.             $container->removeDefinition('fos_ck_editor.twig_extension');
  36.         }
  37.     }
  38. }