1 | <?php |
||
12 | class BlogPostNotifications extends DataExtension |
||
13 | { |
||
14 | /** |
||
15 | * Notify all authors of notifications. |
||
16 | * |
||
17 | * @param SS_List $list |
||
18 | * @param mixed $comment |
||
19 | */ |
||
20 | public function updateNotificationRecipients(&$list, &$comment) |
||
24 | |||
25 | /** |
||
26 | * Update comment to include the page title. |
||
27 | * |
||
28 | * @param string $subject |
||
29 | * @param Comment $comment |
||
30 | * @param Member|string $recipient |
||
31 | */ |
||
32 | public function updateNotificationSubject(&$subject, &$comment, &$recipient) |
||
36 | } |
||
37 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.