Switch to PSR-4, fix CS and update service provider
This commit is contained in:
21
src/Facades/Searchy.php
Executable file
21
src/Facades/Searchy.php
Executable file
@ -0,0 +1,21 @@
|
||||
<?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';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user