Pop\Archive\Adapter\Phar::extract PHP Method

extract() public method

Method to extract an archived and/or compressed file
public extract ( string $to = null ) : void
$to string
return void
    public function extract($to = null)
    {
        $this->archive->extractTo(null !== $to ? $to : './');
    }