Skip to content

Commit

Permalink
Make event properties public #7
Browse files Browse the repository at this point in the history
  • Loading branch information
imorland committed Mar 8, 2021
1 parent cf209ba commit d8f4814
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Events/DiscussionWasViewed.php
Expand Up @@ -17,20 +17,20 @@
class DiscussionWasViewed
{
/** @var User */
private $actor;
public $actor;

/** @var Discussion */
private $discussion;
public $discussion;

/**
* @var string
*/
private $ip;
public $ip;

/**
* @var string
*/
private $userAgent;
public $userAgent;

/**
* DiscussionWasViewed constructor.
Expand Down

0 comments on commit d8f4814

Please sign in to comment.