line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
####################################################################### |
2
|
|
|
|
|
|
|
# ex: set ts=8 sw=4 et |
3
|
|
|
|
|
|
|
######################################################################### |
4
|
|
|
|
|
|
|
package WWW::Facebook::API::Notifications; |
5
|
|
|
|
|
|
|
|
6
|
34
|
|
|
34
|
|
185
|
use warnings; |
|
34
|
|
|
|
|
68
|
|
|
34
|
|
|
|
|
968
|
|
7
|
34
|
|
|
34
|
|
180
|
use strict; |
|
34
|
|
|
|
|
66
|
|
|
34
|
|
|
|
|
905
|
|
8
|
34
|
|
|
34
|
|
167
|
use Carp; |
|
34
|
|
|
|
|
63
|
|
|
34
|
|
|
|
|
7781
|
|
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
1
|
32
|
sub get { return shift->base->call( 'notifications.get', @_ ) } |
11
|
1
|
|
|
1
|
1
|
31
|
sub send { return shift->base->call( 'notifications.send', @_ ) } ## no critic |
12
|
1
|
|
|
1
|
1
|
48
|
sub send_email { return shift->base->call( 'notifications.sendEmail', @_ ); } |
13
|
1
|
|
|
1
|
1
|
119
|
sub get_list { return shift->base->call( 'notifications.getList', @_ ); } |
14
|
1
|
|
|
1
|
1
|
31
|
sub mark_read { return shift->base->call( 'notifications.markRead', @_ ); } |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; # Magic true value required at end of module |
17
|
|
|
|
|
|
|
__END__ |