mirror of
https://gh.wpcy.net/https://github.com/osoobe/freescout-api-extender.git
synced 2026-07-14 22:40:57 +08:00
43 lines
657 B
PHP
43 lines
657 B
PHP
<?php
|
|
|
|
namespace Modules\ApiExtender\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class ApiExtenderServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Indicates if loading of the provider is deferred.
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $defer = false;
|
|
|
|
/**
|
|
* Boot the application events.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
$this->hooks();
|
|
}
|
|
|
|
/**
|
|
* Module hooks.
|
|
*/
|
|
public function hooks()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Get the services provided by the provider.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function provides()
|
|
{
|
|
return [];
|
|
}
|
|
}
|