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;
/**
* @author Marko Kunic <[email protected]>
*/
abstract class AbstractField implements AnnotationInterface
{
* @var string
public $type;
* @var array
public $fieldDescriptionOptions = [];
public function getSettings(): array
return [
$this->type,
$this->fieldDescriptionOptions
];
}