for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Luminark\Rivet\Facades;
use Illuminate\Support\Facades\Facade;
use Luminark\Rivet\Interfaces\FileProcessorInterface;
class FileProcessor extends Facade
{
protected static function getFacadeAccessor()
return FileProcessorInterface::class;
}