1
0
mirror of https://github.com/flarum/core.git synced 2025-10-13 16:05:05 +02:00

Applied fixes from StyleCI

This commit is contained in:
Toby Zerner
2016-02-25 22:09:39 -05:00
committed by StyleCI Bot
parent 83c22d73a4
commit a6cf10f854
96 changed files with 240 additions and 245 deletions

View File

@@ -17,7 +17,7 @@ class ReadDiscussion
/**
* The ID of the discussion to mark as read.
*
* @var integer
* @var int
*/
public $discussionId;
@@ -31,14 +31,14 @@ class ReadDiscussion
/**
* The number of the post to mark as read.
*
* @var integer
* @var int
*/
public $readNumber;
/**
* @param integer $discussionId The ID of the discussion to mark as read.
* @param int $discussionId The ID of the discussion to mark as read.
* @param User $actor The user to mark the discussion as read for.
* @param integer $readNumber The number of the post to mark as read.
* @param int $readNumber The number of the post to mark as read.
*/
public function __construct($discussionId, User $actor, $readNumber)
{