27 lines
460 B
PHP
27 lines
460 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Icefox\DTO;
|
|
|
|
use Icefox\DTO\Support\DataObjectRegistrar;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class DataObjectServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
$this->mergeConfigFrom(__DIR__ . '/config/dto.php', 'dto');
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
//
|
|
}
|
|
}
|