for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Usamamuneerchaudhary\Notifier\Facades;
use Illuminate\Http\RedirectResponse;
use Illuminate\Support\Facades\Facade;
use Usamamuneerchaudhary\Notifier\Services\UrlTrackingService;
/**
* @method static RedirectResponse safeRedirect(string $url)
* @method static string rewriteUrlsForTracking(string $content, string $token)
*
* @see \Usamamuneerchaudhary\Notifier\Services\UrlTrackingService
*/
class UrlTracking extends Facade
{
* Get the registered name of the component.
protected static function getFacadeAccessor(): string
return UrlTrackingService::class;
}