for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Neimheadh\SonataAnnotationBundle\Reader;
use Doctrine\Common\Annotations\Reader;
use Neimheadh\SonataAnnotationBundle\Annotation\ActionButton;
/**
* ActionButton annotation reader.
*
* @author Marko Kunic <[email protected]>
* @author Mathieu Wambre <[email protected]>
*/
final class ActionButtonReader extends AbstractActionReader
{
* {@inheritDoc}
public function __construct(Reader $annotationReader)
parent::__construct($annotationReader, ActionButton::class);
}