25 lines
369 B
PHP
25 lines
369 B
PHP
|
<?php
|
||
|
|
||
|
namespace Laravel\Spark\Events\Teams;
|
||
|
|
||
|
class TeamCreated
|
||
|
{
|
||
|
/**
|
||
|
* The team instance.
|
||
|
*
|
||
|
* @var \Laravel\Spark\Team
|
||
|
*/
|
||
|
public $team;
|
||
|
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*
|
||
|
* @param \Laravel\Spark\Team $team
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct($team)
|
||
|
{
|
||
|
$this->team = $team;
|
||
|
}
|
||
|
}
|