20 lines
450 B
PHP
20 lines
450 B
PHP
<?php
|
|
|
|
use Icefox\DTO\CustomHandlers;
|
|
use Illuminate\Support\Collection;
|
|
use Psr\Log\LogLevel;
|
|
|
|
return [
|
|
'rules' => [
|
|
Collection::class => CustomHandlers::CollectionRules(...),
|
|
],
|
|
'logging' => [
|
|
'channel' => 'dto',
|
|
'context' => [
|
|
'rules' => LogLevel::NOTICE,
|
|
'input' => LogLevel::INFO,
|
|
'casts' => LogLevel::INFO,
|
|
'internals' => LogLevel::DEBUG,
|
|
],
|
|
],
|
|
];
|