1
0
mirror of https://github.com/flarum/core.git synced 2025-10-18 18:26:07 +02:00

moved GetDisplayName event to User namespace (#1768)

This commit is contained in:
Daniël Klabbers
2019-07-06 19:27:44 +02:00
committed by Franz Liedke
parent 9fb3a31b51
commit 797f6eea50
2 changed files with 2 additions and 2 deletions

View File

@@ -1,30 +0,0 @@
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Event;
use Flarum\User\User;
class GetDisplayName
{
/**
* @var User
*/
public $user;
/**
* @param User $user
*/
public function __construct(User $user)
{
$this->user = $user;
}
}