vendor/w-vision/data-definitions/src/DataDefinitionsBundle/DependencyInjection/Compiler/InterpreterRegistryCompilerPass.php line 19

Open in your IDE?
  1. <?php
  2. /**
  3.  * Data Definitions.
  4.  *
  5.  * LICENSE
  6.  *
  7.  * This source file is subject to the GNU General Public License version 3 (GPLv3)
  8.  * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
  9.  * files that are distributed with this source code.
  10.  *
  11.  * @copyright  Copyright (c) 2016-2019 w-vision AG (https://www.w-vision.ch)
  12.  * @license    https://github.com/w-vision/DataDefinitions/blob/master/gpl-3.0.txt GNU General Public License version 3 (GPLv3)
  13.  */
  14. namespace Wvision\Bundle\DataDefinitionsBundle\DependencyInjection\Compiler;
  15. use CoreShop\Bundle\PimcoreBundle\DependencyInjection\Compiler\RegisterRegistryTypePass;
  16. final class InterpreterRegistryCompilerPass extends RegisterRegistryTypePass
  17. {
  18.     public const INTERPRETER_TAG 'data_definitions.interpreter';
  19.     public function __construct()
  20.     {
  21.         parent::__construct(
  22.             'data_definitions.registry.interpreter',
  23.             'data_definitions.form.registry.interpreter',
  24.             'data_definitions.interpreters',
  25.             self::INTERPRETER_TAG
  26.         );
  27.     }
  28. }