diff --git a/src/Compress.php b/src/Compress.php index 57b9b06c..3e75e5d3 100644 --- a/src/Compress.php +++ b/src/Compress.php @@ -175,6 +175,18 @@ public function setAdapterOptions(array $options) return $this; } + /** + * Get individual or all options from underlying adapter + * + * @param null|string $option + * @return mixed + */ + public function getOptions($option = null) + { + $adapter = $this->getAdapter(); + return $adapter->getOptions($option); + } + /** * Calls adapter methods *