*/ interface AAM_Shortcode_Strategy_Interface { /** * Initialize shortcode strategy * * @param type $args * @param type $content */ public function __construct($args, $content); /** * Process strategy */ public function run(); }