| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | ####################################################################### | 
| 2 |  |  |  |  |  |  | # $Date$ | 
| 3 |  |  |  |  |  |  | # $Revision$ | 
| 4 |  |  |  |  |  |  | # $Author$ | 
| 5 |  |  |  |  |  |  | # ex: set ts=8 sw=4 et | 
| 6 |  |  |  |  |  |  | ######################################################################### | 
| 7 |  |  |  |  |  |  | package WWW::Bebo::API::Notifications; | 
| 8 |  |  |  |  |  |  |  | 
| 9 | 21 |  |  | 21 |  | 111 | use warnings; | 
|  | 21 |  |  |  |  | 41 |  | 
|  | 21 |  |  |  |  | 586 |  | 
| 10 | 21 |  |  | 21 |  | 109 | use strict; | 
|  | 21 |  |  |  |  | 36 |  | 
|  | 21 |  |  |  |  | 569 |  | 
| 11 | 21 |  |  | 21 |  | 98 | use Carp; | 
|  | 21 |  |  |  |  | 34 |  | 
|  | 21 |  |  |  |  | 1174 |  | 
| 12 |  |  |  |  |  |  |  | 
| 13 | 21 |  |  | 21 |  | 113 | use version; our $VERSION = qv('0.0.03'); | 
|  | 21 |  |  |  |  | 34 |  | 
|  | 21 |  |  |  |  | 110 |  | 
| 14 |  |  |  |  |  |  |  | 
| 15 | 1 |  |  | 1 | 1 | 21 | sub get  { return shift->base->call( 'notifications.get',  @_ ) } | 
| 16 | 0 |  |  | 0 | 1 |  | sub send { return shift->base->call( 'notifications.send', @_ ) } ## no critic | 
| 17 | 0 |  |  | 0 | 1 |  | sub send_email { return shift->base->call( 'notifications.sendEmail', @_ ); } | 
| 18 |  |  |  |  |  |  |  | 
| 19 |  |  |  |  |  |  | 1;    # Magic true value required at end of module | 
| 20 |  |  |  |  |  |  | __END__ |