1. Go to this page and download the library: Download kontoulis/rabbitmq-laravel library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namespace Kontoulis\RabbitMQLaravel\Handlers;
use Kontoulis\RabbitMQLaravel\Message\Message;
/**
* Class DefaultHandler
* @package Kontoulis\RabbitMQLaravel\Handlers
*/
class DefaultHandler extends Handler{
/**
* Tries to process the incoming message.
* @param Message $msg
* @return int One of the possible return values defined as Handler
* constants.
*/
public function process(Message $msg)
{
return $this->handleSuccess($msg);
}
/**
* @param $msg
* @return int
*/
protected function handleSuccess($msg)
{
var_dump($msg);
/**
* For more Handler return values see the parent class
*/
return Handler::RV_SUCCEED_STOP;
}
}