murph-core/src/core/Annotation/UrlGenerator.php

20 lines
298 B
PHP

<?php
namespace App\Core\Annotation;
/**
* class UrlGenerator.
*
* @author Simon Vieille <simon@deblan.fr>
*/
#[\Attribute]
class UrlGenerator
{
public function __construct(
public string $service,
public string $method,
public array $options = []
) {
}
}