for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SanderVanHooft\PayableRedirect\Events;
use SanderVanHooft\PayableRedirect\Payment;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class PaymentEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $payment;
/**
* Create a new event instance.
*
* @return void
@return
Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.
Please refer to the PHP core documentation on constructors.
*/
public function __construct(Payment $payment)
$this->payment = $payment;
}
* Get the channels the event should broadcast on.
* @return Channel|array
public function broadcastOn()
return new PrivateChannel('channel-name');
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.