Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkwinkelmann authored and StyleCIBot committed Nov 24, 2020
1 parent b27315f commit e4011d2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
14 changes: 7 additions & 7 deletions src/Poll.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
use Flarum\User\User;

/**
* @property int $id
* @property string $question
* @property bool $public_poll
* @property Discussion $discussion
* @property USer $user
* @property int $discussion_id
* @property int $user_id
* @property int $id
* @property string $question
* @property bool $public_poll
* @property Discussion $discussion
* @property USer $user
* @property int $discussion_id
* @property int $user_id
* @property \Carbon\Carbon $end_date
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
Expand Down
8 changes: 4 additions & 4 deletions src/PollOption.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
use Flarum\Database\AbstractModel;

/**
* @property int $id
* @property string $answer
* @property Poll $poll
* @property int $poll_id
* @property int $id
* @property string $answer
* @property Poll $poll
* @property int $poll_id
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
Expand Down
12 changes: 6 additions & 6 deletions src/PollVote.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
use Flarum\User\User;

/**
* @property Poll $poll
* @property PollOption $option
* @property User $user
* @property int $poll_id
* @property int $option_id
* @property int $user_id
* @property Poll $poll
* @property PollOption $option
* @property User $user
* @property int $poll_id
* @property int $option_id
* @property int $user_id
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
Expand Down

0 comments on commit e4011d2

Please sign in to comment.