Applied fixes from StyleCI
This commit is contained in:
parent
96afe1717b
commit
4a52b22239
4 changed files with 9 additions and 7 deletions
|
@ -17,7 +17,7 @@ use Sakura\BBcode;
|
|||
class Posting
|
||||
{
|
||||
// Construct a new post action
|
||||
public function __construct($forum, $thread = null) {
|
||||
|
||||
public function __construct($forum, $thread = null)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
@ -75,12 +75,14 @@ class Thread
|
|||
}
|
||||
|
||||
// Get the opening post
|
||||
public function firstPost() {
|
||||
public function firstPost()
|
||||
{
|
||||
return $this->posts() ? array_values($this->_posts)[0] : (new Post(0));
|
||||
}
|
||||
|
||||
// Get the last reply
|
||||
public function lastPost() {
|
||||
public function lastPost()
|
||||
{
|
||||
return $this->posts() ? end($this->_posts) : (new Post(0));
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue