for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aitor24\Laralang\Facades;
use Aitor24\Laralang\Builder;
use Illuminate\Support\Facades\Facade;
class Laralang extends Facade
{
/**
* Get the registered name of the component.
*/
public static function getFacadeAccessor()
return Builder::class;
}