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;
/**
* Add child admin to current admin class or admin annotated model.
*
* @Annotation
* @Target("CLASS")
* @author Marko Kunic <[email protected]>
* @author Mathieu Wambre <[email protected]>
*/
final class AddChild implements AnnotationInterface
{
* Child model class.
* @var string
public string $class;
* Reverse field.
public string $field;
}