for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace KunicMarko\SonataAnnotationBundle\Reader;
use KunicMarko\SonataAnnotationBundle\Annotation\DashboardAction;
/**
* @author Marko Kunic <[email protected]>
*/
final class DashboardActionReader extends AbstractActionReader
{
protected function isSupported($annotation): bool
return $annotation instanceof DashboardAction;
}