Files
kupshop/bundles/KupShop/KupShopBundle/Event/SynchronizationEvent.php
2025-08-02 16:30:27 +02:00

22 lines
415 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\KupShopBundle\Event;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Contracts\EventDispatcher\Event;
/**
* @deprecated use SYNCHRONIZATION module instead
*/
class SynchronizationEvent extends Event
{
public OutputInterface $output;
public function __construct(OutputInterface $output)
{
$this->output = $output;
}
}