<?php
/**
* Lifestyle Webconsulting GmbH
*
* LICENSE: This Software is the property of Lifestyle Webconsulting GmbH (Aschaffenburg, Germany)
* and is private by copyright law - it is NOT Freeware.
*
* Any unauthorized use of this software without a valid license
* is a violation of the license agreement and will be prosecuted by
* civil and criminal law.
*
* @copyright 2018 Lifestyle Webconsulting GmbH
* @link http://www.life-style.de
*/
namespace AppBundle\EventListener;
use Lifestyle\Pimcore\RabbitMQBundle\Event\PreUnpublishEvent;
use Lifestyle\Pimcore\RabbitMQBundle\Exception\DeleteNotPossibleException;
/**
* Class NoSyliusListener
*
* @copyright 2018 Lifestyle Webconsulting GmbH
* @link http://www.life-style.de
* @package AppBundle\EventListener
*/
class NoSyliusListener
{
/**
* @param PreUnpublishEvent $event
* @throws DeleteNotPossibleException
*/
public function onPreUnpublish(PreUnpublishEvent $event)
{
// Stop f*** default listener from doing nasty things
/** @see \Lifestyle\Pimcore\RabbitMQBundle\EventListener\PreUnpublishListener */
$event->stopPropagation();
}
}