/** * Remove a role * * @param $id * * @return int */ public function removeRole($id) { return RoleModel::destroy($id); }
/** * Remove a role * * @param int $id * * @return int */ public function removeRole(int $id) : int { return RoleModel::destroy($id); }