Gaufrette\Adapter\AwsS3::mtime PHP Method

mtime() public method

public mtime ( $key )
    public function mtime($key)
    {
        try {
            $result = $this->service->headObject($this->getOptions($key));
            return strtotime($result['LastModified']);
        } catch (\Exception $e) {
            return false;
        }
    }