Unnecessary phpDoc removed from Subscription and SubscriptionEvent.

This commit is contained in:
Alexey Skobkin 2017-01-13 02:43:10 +03:00
parent 37e0d10611
commit da2a27dd63
2 changed files with 0 additions and 9 deletions

View file

@ -31,10 +31,6 @@ class Subscription
private $subscriber; private $subscriber;
/**
* @param User $author
* @param User $subscriber
*/
public function __construct(User $author, User $subscriber) public function __construct(User $author, User $subscriber)
{ {
$this->author = $author; $this->author = $author;

View file

@ -57,11 +57,6 @@ class SubscriptionEvent
private $action; private $action;
/**
* @param User $author
* @param User $subscriber
* @param string $action
*/
public function __construct(User $author, User $subscriber, string $action = self::ACTION_SUBSCRIBE) public function __construct(User $author, User $subscriber, string $action = self::ACTION_SUBSCRIBE)
{ {
$this->author = $author; $this->author = $author;