* @package cache * @link https://www.zentao.net */ class bugHandler { /** * 获取指派给某人的bug的缓存键名。 * Get the cache key name of bugs assigned to someone. * * @param string $account * @access public * @return string */ public function assignedTo(string $account): string { return 'res:bug:assignedTo:' . $account; } }