mirror of
https://github.com/flarum/framework.git
synced 2025-02-13 16:52:45 +08:00
22 lines
345 B
PHP
22 lines
345 B
PHP
![]() |
<?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;
|
||
|
}
|
||
|
}
|