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 field annotation.
*
* Allows you to configure your show field.
* @Annotation
* @Target({"PROPERTY", "METHOD"})
* @author Marko Kunic <[email protected]>
* @author Mathieu Wambre <[email protected]>
*/
class ShowField extends AbstractField
{
* Field position.
* @var int
public int $position;
}