1
0
mirror of https://github.com/flarum/core.git synced 2025-08-12 03:14:33 +02:00

Update for composer branch

This commit is contained in:
Toby Zerner
2015-10-11 18:51:25 +10:30
parent a1e01938ef
commit 5f9d45c4ab
43 changed files with 1277 additions and 517 deletions

View File

@@ -0,0 +1,45 @@
<?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\Flags\Event;
use Flarum\Core\Post;
use Flarum\Core\User;
class FlagsWillBeDeleted
{
/**
* @var Post
*/
public $post;
/**
* @var User
*/
public $actor;
/**
* @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;
}
}