Files
2025-08-02 16:30:27 +02:00

17 lines
376 B
PHP

<?php
namespace KupShop\MessengerBundle\Message;
use KupShop\OrderingBundle\Exception\MethodNotImplementedException;
class AsyncMessage
{
/**
* @throws MethodNotImplementedException
*/
public function handle()
{
throw new MethodNotImplementedException(sprintf('You have not implemented method %s::%s()!', get_class($this), 'handle'));
}
}