Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2023-03-24 06:00:31 +00:00
committed by RafficMohammed
parent 0975cc5dd9
commit b3b057e0cc
33 changed files with 172 additions and 184 deletions

View File

@@ -116,25 +116,25 @@ class Finder
public static function rolesGroup($id)
{
switch ($id) {
case null:
return \Lang::get('lang.none');
case 1:
return 'Client';
case 2:
return 'Agent';
case 4:
return 'Admin';
case 3:
return 'Client,Agent';
case 5:
return 'Client,Admin';
case 6:
return 'Agent,Admin';
case 7:
return 'Client,Agent,Admin';
default:
return 'Undefined!';
}
case null:
return \Lang::get('lang.none');
case 1:
return 'Client';
case 2:
return 'Agent';
case 4:
return 'Admin';
case 3:
return 'Client,Agent';
case 5:
return 'Client,Admin';
case 6:
return 'Agent,Admin';
case 7:
return 'Client,Agent,Admin';
default:
return 'Undefined!';
}
}
/**