PHP code example of ralbear / laravel-events-to-sns
1. Go to this page and download the library: Download ralbear/laravel-events-to-sns 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/ */
ralbear / laravel-events-to-sns example snippets
public function getTopic()
{
return 'service-a-topic';
}
namespace App\Events;
use App\Models\Order;
use Ralbear\EventsToSns\Contracts\ShouldBeInSns;
use Ralbear\EventsToSns\Traits\SendToSns;
class OrderCreatedEvent implements ShouldBeInSns
{
use SendToSns;
public $order;
public function __construct(Order $order)
{
$this->order = $order;
}
public function uniqueId()
{
return $this->order->id;
}
public function getTopic()
{
return 'service-a-topic';
}
}
namespace App\Jobs;
use Illuminate\Queue\Jobs\SqsJob;
class OrderCreatedJob
{
public function handle(SqsJob $job, $data)
{
//Do something nice with your $data
$job->delete();
}
}