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;
/**
* Remove route annotation.
*
* Allows you to remove a default route from your admin.
* @Annotation
* @Target("CLASS")
* @author Marko Kunic <[email protected]>
* @author Mathieu Wambre <[email protected]>
*/
final class RemoveRoute implements AnnotationInterface
{
* Removed route name.
* @var string
public string $name;
}