vendor/coreshop/pimcore-bundle/Mail/MailProcessorInterface.php line 18

Open in your IDE?
  1. <?php
  2. /**
  3.  * CoreShop.
  4.  *
  5.  * This source file is subject to the GNU General Public License version 3 (GPLv3)
  6.  * For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
  7.  * files that are distributed with this source code.
  8.  *
  9.  * @copyright  Copyright (c) 2015-2020 Dominik Pfaffenbauer (https://www.pfaffenbauer.at)
  10.  * @license    https://www.coreshop.org/license     GNU General Public License version 3 (GPLv3)
  11.  */
  12. namespace CoreShop\Bundle\PimcoreBundle\Mail;
  13. use CoreShop\Component\Pimcore\Mail\MailProcessorInterface as NewMailProcessorInterface;
  14. if (interface_exists(NewMailProcessorInterface::class)) {
  15.     @trigger_error('Interface CoreShop\Bundle\PimcoreBundle\Mail\MailProcessorInterface is deprecated since version 2.2.6 and will be removed in 3.0.0. Use CoreShop\Component\Pimcore\Mail\MailProcessorInterface class instead.'E_USER_DEPRECATED);
  16. } else {
  17.     /**
  18.      * @deprecated Interface CoreShop\Bundle\PimcoreBundle\Mail\MailProcessorInterface is deprecated since version 2.2.6 and will be removed in 3.0.0. Use CoreShop\Component\Pimcore\Mail\MailProcessorInterface class instead.
  19.      */
  20.     interface MailProcessorInterface extends NewMailProcessorInterface
  21.     {
  22.     }
  23. }