mirror of
https://github.com/flarum/core.git
synced 2025-10-18 18:26:07 +02:00
51 lines
906 B
PHP
51 lines
906 B
PHP
<?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\Events;
|
|
|
|
use Flarum\Core\Posts\Post;
|
|
use Flarum\Core\Users\User;
|
|
|
|
class PostWillBeSaved
|
|
{
|
|
/**
|
|
* The post that will be saved.
|
|
*
|
|
* @var Post
|
|
*/
|
|
public $post;
|
|
|
|
/**
|
|
* The user who is performing the action.
|
|
*
|
|
* @var User
|
|
*/
|
|
public $actor;
|
|
|
|
/**
|
|
* The attributes to update on the post.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $data;
|
|
|
|
/**
|
|
* @param Post $post
|
|
* @param User $actor
|
|
* @param array $data
|
|
*/
|
|
public function __construct(Post $post, User $actor, array $data = [])
|
|
{
|
|
$this->post = $post;
|
|
$this->actor = $actor;
|
|
$this->data = $data;
|
|
}
|
|
}
|