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;
/**
* List action annotation.
*
* Allows you to configure your list page actions.
* @Annotation
* @Target("CLASS")
* @author Marko Kunic <[email protected]>
* @author Mathieu Wambre <[email protected]>
*/
final class ListAction implements AnnotationInterface
{
* Action name.
* @var string
public string $name;
* Action options.
* @var array
public array $options = [];
}