first commit
This commit is contained in:
24
catch/src/Facade/Zipper.php
Normal file
24
catch/src/Facade/Zipper.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user