Initial Commit

This commit is contained in:
Tom Lingham
2014-07-13 21:12:07 +10:00
commit 4c0890f936
6 changed files with 98 additions and 0 deletions

View File

@ -0,0 +1,42 @@
<?php namespace TomLingham\Searchy;
use Illuminate\Support\ServiceProvider;
class SearchyServiceProvider extends ServiceProvider {
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}
/**
*
*/
public function boot()
{
$this->package('tom-lingham/searchy');
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return array();
}
}