Newscoop\Storage\Item::getType PHP Method

getType() public method

Get type
public getType ( ) : string
return string
    public function getType()
    {
        if ($this->storage->isDir($this->key)) {
            return self::TYPE_DIR;
        }
        return pathinfo($this->key, PATHINFO_EXTENSION);
    }