framework/src/Events/GroupWasRenamed.php

22 lines
345 B
PHP
Raw Normal View History

2015-07-31 18:40:49 +08:00
<?php namespace Flarum\Events;
use Flarum\Core\Groups\Group;
class GroupWasRenamed
{
/**
* The group that was renamed.
*
* @var Group
*/
public $group;
/**
* @param Group $group The group that was renamed.
*/
public function __construct(Group $group)
{
$this->group = $group;
}
}