Flarum\Core\Command\EditPost::__construct PHP Method

__construct() public method

public __construct ( integer $postId, User $actor, array $data )
$postId integer The ID of the post to edit.
$actor Flarum\Core\User The user performing the action.
$data array The attributes to update on the post.
    public function __construct($postId, User $actor, array $data)
    {
        $this->postId = $postId;
        $this->actor = $actor;
        $this->data = $data;
    }
EditPost