Dmyers\Storage\Adapter\AmazonS3::mime PHP Method

mime() public method

{@inheritDoc}
public mime ( $path )
    public function mime($path)
    {
        $object = $this->client->headObject(array('Bucket' => $this->bucket, 'Key' => $this->computePath($path)));
        return $object['ContentType'];
    }