Gaufrette\Adapter\PhpseclibSftp::mtime PHP Method

mtime() public method

public mtime ( $key )
    public function mtime($key)
    {
        $this->initialize();
        $stat = $this->sftp->stat($this->computePath($key));
        return isset($stat['mtime']) ? $stat['mtime'] : false;
    }