for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace KunicMarko\SonataAnnotationBundle\Annotation;
/**
* Add route annotation.
*
* Add custom route to your admin class.
* @Annotation
* @Target("CLASS")
* @author Marko Kunic <[email protected]>
* @author Mathieu Wambre <[email protected]>
*/
final class AddRoute implements AnnotationInterface
{
public const ID_PARAMETER = '{id}';
* Route name.
* @var string
public string $name;
* Route path.
public string $path;
}