for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Hyde\Foundation\Facades;
use Hyde\Foundation\HydeKernel;
use Hyde\Foundation\Kernel\FileCollection;
use Illuminate\Support\Facades\Facade;
/**
* @mixin \Hyde\Foundation\Kernel\FileCollection
*/
class Files extends Facade
{
/** @return \Hyde\Foundation\Kernel\FileCollection<string, \Hyde\Support\Filesystem\SourceFile> */
public static function getFacadeRoot(): FileCollection
return HydeKernel::getInstance()->files();
}