ellisio/laravel-phone

View on GitHub
src/Facades/Phone.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace EllisIO\Phone\Facades;

use EllisIO\Phone\Contracts\Factory;
use Illuminate\Support\Facades\Facade;

class Phone extends Facade
{
    /**
     * Get the registered name of the component.
     *
     * @return string
     */
    protected static function getFacadeAccessor()
    {
        return Factory::class;
    }
}