Resolve AT Protocol DIDs, handles, and schemas with intelligent caching for Laravel
at main 315 B view raw
1<?php 2 3namespace SocialDept\AtpResolver\Facades; 4 5use Illuminate\Support\Facades\Facade; 6 7class Resolver extends Facade 8{ 9 /** 10 * Get the registered name of the component. 11 * 12 * @return string 13 */ 14 protected static function getFacadeAccessor(): string 15 { 16 return 'resolver'; 17 } 18}