1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
namespace iThemesSecurity\Actor;
interface Actor {
/** * Gets the type of this actor. * * @return string */ public function get_type();
/** * Gets the identifier for this particular actor instance. * * This must be unique to the actor type. * * @return string */ public function get_identifier();
/** * Gets a description of this actor. * * @return string */ public function __toString(); }
|