Skip to content

Commit

Permalink
docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyWay committed May 16, 2017
1 parent 715b8ac commit 8e48764
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/Filters/Filters.php
Expand Up @@ -38,8 +38,8 @@ public function __construct(Request $request)
/**
* Apply the filters.
*
* @param Builder $builder
* @return Builder
* @param \Illuminate\Database\Eloquent\Builder $builder
* @return \Illuminate\Database\Eloquent\Builder
*/
public function apply($builder)
{
Expand Down
4 changes: 2 additions & 2 deletions app/Filters/ThreadFilters.php
Expand Up @@ -17,7 +17,7 @@ class ThreadFilters extends Filters
* Filter the query by a given username.
*
* @param string $username
* @return Builder
* @return \Illuminate\Database\Eloquent\Builder
*/
protected function by($username)
{
Expand All @@ -29,7 +29,7 @@ protected function by($username)
/**
* Filter the query according to most popular threads.
*
* @return $this
* @return \Illuminate\Database\Eloquent\Builder
*/
protected function popular()
{
Expand Down
1 change: 1 addition & 0 deletions app/Thread.php
Expand Up @@ -85,6 +85,7 @@ public function replies()
*
* @param array $reply
* @return Reply
* @return Model
*/
public function addReply($reply)
{
Expand Down

0 comments on commit 8e48764

Please sign in to comment.