for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Cviebrock\EloquentTaggable\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Queue\SerializesModels;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
class ModelUntagged
{
use Dispatchable, InteractsWithSockets, SerializesModels;
private $model;
private $tags;
/**
* @return mixed
*/
public function getModel()
return $this->model;
}
public function getTags()
return $this->tags;
* 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($model, $tags)
$this->model = $model;
$this->tags = $tags;
* Get the channels the event should broadcast on.
* @return \Illuminate\Broadcasting\Channel|array
public function broadcastOn()
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.