project = $project; } /** * Return class information * * @access public * @return string */ public function __toString() { return get_called_class(); } /** * Execute the action * * @access public * @param array $data Event data dictionary * @return bool True if the action was executed or false when not executed */ public function execute(array $data) { if (isset($data['project_id'])) { $this->project->updateModificationDate($data['project_id']); return true; } return false; } }