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;
/**
* Show association field annotation.
*
* Allows you to configure your show field having an association field.
* @Annotation
* @Target({"PROPERTY"})
* @author Marko Kunic <[email protected]>
* @author Mathieu Wambre <[email protected]>
*/
final class ShowAssociationField extends ShowField
{
* Association field name.
* @var string
public string $field;
}