File "Actor.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/better-wp-security/core/lib/actor/Actor.php
File size: 436 bytes
MIME-type: text/x-php
Charset: utf-8
<?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();
}