Don't use isset

2022.09-rc
Michael 2018-07-07 23:19:28 +00:00
rodzic 4467dd4972
commit 4673560c55
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -107,7 +107,7 @@ class Item extends BaseObject
*/
private static function indexToActivity($index)
{
if (!isset(self::ACTIVITIES[$index])) {
if (!is_int($index) || !array_key_exists($index, self::ACTIVITIES)) {
return '';
}