22 lines
415 B
PHP
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;
|
|
}
|
|
}
|