catchAdmin/catch/src/Facade/Zipper.php
2022-12-05 23:01:12 +08:00

25 lines
443 B
PHP

<?php
declare(strict_types=1);
namespace Catch\Facade;
use Illuminate\Support\Facades\Facade;
use Catch\Support\Zip\Zipper as Zip;
/**
* @method static Zip make(string $pathToFile)
* @method static Zip zip(string $pathToFile)
* @method static Zip phar(string $pathToFile)
*
* @see Zipper
* Class Module
*/
class Zipper extends Facade
{
public static function getFacadeAccessor(): string
{
return Zip::class;
}
}