Files
laravel-searchy/src/Facades/Searchy.php
2015-12-22 09:34:30 +00:00

22 lines
342 B
PHP
Executable File

<?php
namespace TomLingham\Searchy\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Searchy facade for the Laravel framework.
*/
class Searchy extends Facade
{
/**
* Get the registered component.
*
* @return object
*/
protected static function getFacadeAccessor()
{
return 'searchy';
}
}