File "TeamEvent.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/jetstream/src/Events/TeamEvent.php
File size: 568 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Laravel\Jetstream\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
abstract class TeamEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* The team instance.
*
* @var \App\Models\Team
*/
public $team;
/**
* Create a new event instance.
*
* @param \App\Models\Team $team
* @return void
*/
public function __construct($team)
{
$this->team = $team;
}
}