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\DashboardAction;
/**
* DashboardAction reader.
*
* @author Marko Kunic <[email protected]>
* @author Mathieu Wambre <[email protected]>
*/
final class DashboardActionReader extends AbstractActionReader
{
* {@inheritDoc}
public function __construct(
Reader $annotationReader
) {
parent::__construct($annotationReader, DashboardAction::class);
}