Phulp\Collection::getItemType PHP Метод

getItemType() защищенный Метод

Returns which is the type of the item.
protected getItemType ( mixed $item ) : string
$item mixed
Результат string
    protected function getItemType($item)
    {
        return is_object($item) ? get_class($item) : gettype($item);
    }