Files
faveo/vendor/propaganistas/laravel-phone/src/LaravelPhoneFacade.php
2016-11-03 05:44:29 +05:30

17 lines
318 B
PHP

<?php namespace Propaganistas\LaravelPhone;
use Illuminate\Support\Facades\Facade;
class LaravelPhoneFacade extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'libphonenumber';
}
}