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