* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Flarum\Event; use Flarum\Core\User; class UserWillBeSaved { /** * The user that will be saved. * * @var User */ public $user; /** * The user who is performing the action. * * @var User */ public $actor; /** * The attributes to update on the user. * * @var array */ public $data; /** * @param User $user The user that will be saved. * @param User $actor The user who is performing the action. * @param array $data The attributes to update on the user. */ public function __construct(User $user, User $actor, array $data) { $this->user = $user; $this->actor = $actor; $this->data = $data; } }