36 lines
610 B
PHP
36 lines
610 B
PHP
<?php
|
|
|
|
namespace Intuit\Providers;
|
|
|
|
use Illuminate\Routing\Router;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
/**
|
|
* Class IntuitServiceProvider.
|
|
*/
|
|
class IntuitServiceProvider extends ServiceProvider
|
|
{
|
|
private string $_path = '';
|
|
|
|
/**
|
|
* Bootstrap the application services.
|
|
*
|
|
* @param Router $router
|
|
*/
|
|
public function boot(Router $router)
|
|
{
|
|
$this->mergeConfigFrom($this->_path.'/config/intuit.php','intuit');
|
|
}
|
|
|
|
/**
|
|
* Register the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
if (! $this->_path) {
|
|
$this->_path = realpath(__DIR__.'/../../src');
|
|
}
|
|
}
|
|
} |