12 lines
232 B
PHP
12 lines
232 B
PHP
<?php
|
|
|
|
use Template\API\External\Health\Handler\HealthHandler;
|
|
use Reinfi\DependencyInjection\Factory\AutoWiringFactory;
|
|
|
|
return [
|
|
'factories' => [
|
|
HealthHandler::class => AutoWiringFactory::class
|
|
],
|
|
]
|
|
|
|
?>
|