17 lines
376 B
PHP
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'));
|
|
}
|
|
}
|