1: <?php namespace Illuminate\Support\Facades; 2: 3: class URL extends Facade { 4: 5: /** 6: * Get the registered name of the component. 7: * 8: * @return string 9: */ 10: protected static function getFacadeAccessor() { return 'url'; } 11: 12: }