Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace NewfoldLabs\WP\Module\Data; |
| 4 | |
| 5 | /** |
| 6 | * Subscriber interface for registering to receive event notifications |
| 7 | */ |
| 8 | interface SubscriberInterface { |
| 9 | |
| 10 | /** |
| 11 | * Method for handling receiving event data |
| 12 | * |
| 13 | * @param array $events Array of Event objects representing data about the events that occurred |
| 14 | */ |
| 15 | public function notify( $events ); |
| 16 | } |