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

Extract new Flarum\Post namespace

This commit is contained in:
Franz Liedke
2017-06-24 13:43:33 +02:00
parent 3481798875
commit 66abd7ecfd
38 changed files with 146 additions and 154 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\Core\Post;
use Flarum\User\User;
class PostWasDeleted
{
/**
* @var \Flarum\Core\Post
*/
public $post;
/**
* @var User
*/
public $actor;
/**
* @param \Flarum\Core\Post $post
*/
public function __construct(Post $post, User $actor = null)
{
$this->post = $post;
$this->actor = $actor;
}
}

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\Core\Post\CommentPost;
use Flarum\User\User;
class PostWasHidden
{
/**
* @var CommentPost
*/
public $post;
/**
* @var User
*/
public $actor;
/**
* @param CommentPost $post
*/
public function __construct(CommentPost $post, User $actor = null)
{
$this->post = $post;
$this->actor = $actor;
}
}

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\Core\Post;
use Flarum\User\User;
class PostWasPosted
{
/**
* @var \Flarum\Core\Post
*/
public $post;
/**
* @var User
*/
public $actor;
/**
* @param \Flarum\Core\Post $post
*/
public function __construct(Post $post, User $actor = null)
{
$this->post = $post;
$this->actor = $actor;
}
}

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\Core\Post\CommentPost;
use Flarum\User\User;
class PostWasRestored
{
/**
* @var CommentPost
*/
public $post;
/**
* @var User
*/
public $actor;
/**
* @param CommentPost $post
*/
public function __construct(CommentPost $post, User $actor = null)
{
$this->post = $post;
$this->actor = $actor;
}
}

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\Core\Post\CommentPost;
use Flarum\User\User;
class PostWasRevised
{
/**
* @var CommentPost
*/
public $post;
/**
* @var User
*/
public $actor;
/**
* @param CommentPost $post
*/
public function __construct(CommentPost $post, User $actor = null)
{
$this->post = $post;
$this->actor = $actor;
}
}

View File

@@ -1,51 +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\Core\Post;
use Flarum\User\User;
class PostWillBeDeleted
{
/**
* The post that is going to be deleted.
*
* @var \Flarum\Core\Post
*/
public $post;
/**
* The user who is performing the action.
*
* @var User
*/
public $actor;
/**
* Any user input associated with the command.
*
* @var array
*/
public $data;
/**
* @param \Flarum\Core\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;
}
}

View File

@@ -1,51 +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\Core\Post;
use Flarum\User\User;
class PostWillBeSaved
{
/**
* The post that will be saved.
*
* @var \Flarum\Core\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 \Flarum\Core\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;
}
}