/** * Constructor * * @param string $section test category name for description * @param array $actions action list * @param string $target target object path */ public function __construct($section, $target, $actions) { parent::__construct(); $this->section = $section; $this->target = $target; $this->actions = $actions; }
/** * Constructor * * @param string|Charcoal_String $section * @param string|Charcoal_String $action * @param boolean|Charcoal_Boolean $success If TRUE, the test succeeded */ public function __construct($section, $action, $success) { parent::__construct(); $this->section = us($section); $this->action = us($action); $this->success = ub($success); }
public function __construct() { parent::__construct(); }
/** * Initialize instance * * @param Charcoal_Config $config configuration data */ public function configure($config) { parent::configure($config); $config->set('priority', Charcoal_EnumEventPriority::VIEW_RENDERING); }