Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
better-wp-security
/
core
/
lib
/
actor
:
Actor.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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(); }