project = $project; } /** * 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; } }