@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Get all notifications that should be sent. |
| 17 | - * @param $recipientId |
|
| 17 | + * @param integer $recipientId |
|
| 18 | 18 | * @return array of Notification |
| 19 | 19 | */ |
| 20 | 20 | public function getNotificationsToSend($recipientId){ |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | 35 | * Get all notifications that should be sent immediately. |
| 36 | - * @param $recipientId |
|
| 36 | + * @param integer $recipientId |
|
| 37 | 37 | * @return array of Notification |
| 38 | 38 | */ |
| 39 | 39 | public function getNotificationsToSendImmediately($recipientId){ |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | /** |
| 75 | 75 | * Mark all notifications as sent "far in the past". This is used for users that don't want to receive any notifications. |
| 76 | - * @param $recipientId |
|
| 76 | + * @param integer $recipientId |
|
| 77 | 77 | */ |
| 78 | 78 | public function markAllNotificationsAsSentFarInThePast($recipientId){ |
| 79 | 79 | $qb = $this->createQueryBuilder() |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | /** |
| 90 | 90 | * Get the \DateTime of the last Notification that has been sent. |
| 91 | - * @param $recipientId |
|
| 91 | + * @param integer $recipientId |
|
| 92 | 92 | * @return \DateTime |
| 93 | 93 | */ |
| 94 | 94 | public function getLastNotificationDate($recipientId){ |
@@ -124,7 +124,7 @@ |
||
| 124 | 124 | * @param array $campaignParams |
| 125 | 125 | * @param array $emailTemplateParams |
| 126 | 126 | * @param string $messageId |
| 127 | - * @param string|array $recipients |
|
| 127 | + * @param string $recipients |
|
| 128 | 128 | */ |
| 129 | 129 | protected function getGoogleAnalyticsUrl($baseUrl, $templateBaseId, array $campaignParams, array $emailTemplateParams, $messageId, $recipients){ |
| 130 | 130 | $url = $baseUrl. |