This commit is contained in:
Simon Vieille 2022-03-13 19:32:32 +01:00
commit 6d0afb50b0
282 changed files with 19937 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<?php
namespace App\Core\Annotation;
use Doctrine\Common\Annotations\Annotation;
/**
* class UrlGenerator.
*
* @author Simon Vieille <simon@deblan.fr>
* @Annotation
*/
class UrlGenerator
{
public string $service;
public string $method;
public array $options = [];
}