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;
/**
* @param User $author
* @param User $subscriber
*/
public function __construct(User $author, User $subscriber)
{
$this->author = $author;

View File

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