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\ActionButton;
/**
* @author Marko Kunic <[email protected]>
*/
final class ActionButtonReader extends AbstractActionReader
{
protected function isSupported($annotation): bool
return $annotation instanceof ActionButton;
}