22 lines
342 B
PHP
Executable File
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';
|
|
}
|
|
}
|