mirror of
https://gh.wpcy.net/https://github.com/jtorvald/freescout-knowledge-api.git
synced 2026-04-23 06:52:20 +08:00
43 lines
679 B
PHP
43 lines
679 B
PHP
<?php
|
|
|
|
namespace Modules\KnowledgeBaseApiModule\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class KnowledgeBaseApiModuleServiceProvider 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 [];
|
|
}
|
|
}
|