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;
/**
* Datagrid association field annotation.
*
* Allow you to configure the datagrid for the annotated field having
* an association field.
* @Annotation
* @Target("PROPERTY")
* @author Marko Kunic <[email protected]>
* @author Mathieu Wambre <[email protected]>
*/
final class DatagridAssociationField extends DatagridField
{
* Association field name.
* @var string
public string $field;
}