Newscoop\Storage\Item::getType PHP Méthode

getType() public méthode

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