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

Move event to Flarum\User namespace

This commit is contained in:
Franz Liedke
2017-06-26 23:30:51 +02:00
parent 3ece3ca976
commit b4c7f8ca89
2 changed files with 4 additions and 4 deletions

View File

@@ -1,37 +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 CheckUserPassword
{
/**
* @var User
*/
public $user;
/**
* @var string
*/
public $password;
/**
* @param User $user
* @param string $password
*/
public function __construct($user, $password)
{
$this->user = $user;
$this->password = $password;
}
}