attribute-spass/src/Infrastructure/WebApp/Route/CollectRoutes.php
lubiana 8b353ec62a
apply php styler
Signed-off-by: lubiana <lubiana123@gmail.com>
2023-09-26 18:24:12 +02:00

19 lines
425 B
PHP

<?php declare(strict_types=1);
namespace Lubian\AttributeMagic\Infrastructure\WebApp\Route;
use Lubian\AttributeMagic\Infrastructure\Event\GenericEvent;
use Lubian\AttributeMagic\Infrastructure\Route\Handler;
final class CollectRoutes extends GenericEvent
{
/**
* @var Handler[]
*/
public array $routes = [];
public function __construct(
public readonly bool $cached = false
) {
}
}