/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
league
/
flysystem
/
src
/
ZipArchive
/
Upload File
HOME
<?php declare(strict_types=1); namespace League\Flysystem\ZipArchive; use RuntimeException; class UnableToCreateParentDirectory extends RuntimeException implements ZipArchiveException { public static function atLocation(string $location, string $reason = ''): UnableToCreateParentDirectory { return new UnableToCreateParentDirectory( rtrim("Unable to create the parent directory ($location): $reason", ' :') ); } }