vendor/pimcore/pimcore/lib/Templating/Helper/HeadMeta.php line 23

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4.  * Pimcore
  5.  *
  6.  * This source file is available under two different licenses:
  7.  * - GNU General Public License version 3 (GPLv3)
  8.  * - Pimcore Commercial License (PCL)
  9.  * Full copyright and license information is available in
  10.  * LICENSE.md which is distributed with this source code.
  11.  *
  12.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  13.  *  @license    http://www.pimcore.org/license     GPLv3 and PCL
  14.  */
  15. namespace Pimcore\Templating\Helper;
  16. @trigger_error(
  17.     'Pimcore\Templating\Helper\HeadMeta is deprecated since version 6.8.0 and will be removed in Pimcore 10. ' .
  18.     ' Use ' . \Pimcore\Twig\Extension\Templating\HeadMeta::class . ' instead.',
  19.     E_USER_DEPRECATED
  20. );
  21. class_exists(\Pimcore\Twig\Extension\Templating\HeadMeta::class);
  22. if (false) {
  23.     /**
  24.      * @deprecated since Pimcore 6.8, use Pimcore\Twig\Extension\Templating\HeadMeta
  25.      */
  26.     class HeadMeta extends \Pimcore\Twig\Extension\Templating\HeadMeta
  27.     {
  28.     }
  29. }