'integer', 'lobby_enabled' => 'integer', 'logo_langs' => 'array', 'status' => 'integer', 'sort' => 'integer', ]; public function isCategory(): bool { return $this->item_type === self::TYPE_CATEGORY; } public function isGlobalPlatform(): bool { return $this->item_type === self::TYPE_PLATFORM && $this->game_type === 0; } public function isPlatformRelation(): bool { return $this->item_type === self::TYPE_PLATFORM && $this->game_type > 0; } }