Gaufrette\Adapter\Dropbox::mtime PHP Méthode

mtime() public méthode

public mtime ( $key )
    public function mtime($key)
    {
        try {
            $metadata = $this->getDropboxMetadata($key);
        } catch (Exception\FileNotFound $e) {
            return false;
        }
        return strtotime($metadata['modified']);
    }