20 lines
336 B
PHP
20 lines
336 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class PxgServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
// Register pxg config
|
|
$this->mergeConfigFrom(__DIR__.'/../../config/pxg.php', 'pxg');
|
|
}
|
|
|
|
public function boot(): void
|
|
{
|
|
//
|
|
}
|
|
}
|