for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helldar\Support\Facades\Helpers\Filesystem;
use Helldar\Support\Facades\BaseFacade;
use Helldar\Support\Helpers\Filesystem\Directory as Helper;
/**
* @method static \DirectoryIterator all(string $path)
* @method static array names(string $path)
* @method static bool make(string $path, int $mode = 755)
* @method static bool exists(string $path)
* @method static bool doesntExist(string $path)
*/
final class Directory extends BaseFacade
{
protected static function getFacadeAccessor()
return Helper::class;
}