for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helldar\ShortUrl\Facades;
use Helldar\ShortUrl\Models\Short;
use Helldar\ShortUrl\Services\ShortService;
use Illuminate\Support\Facades\Facade;
/**
* @method static string get($key)
* @method static string set($url)
* @method static Short search($key)
*/
class ShortUrl extends Facade
{
protected static function getFacadeAccessor()
return ShortService::class;
}