vendor/shopware/storefront/Framework/Captcha/Annotation/Captcha.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Storefront\Framework\Captcha\Annotation;
  3. use Sensio\Bundle\FrameworkExtraBundle\Configuration\ConfigurationInterface;
  4. /**
  5.  * @Annotation
  6.  */
  7. class Captcha implements ConfigurationInterface
  8. {
  9.     /**
  10.      * {@inheritdoc}
  11.      */
  12.     public function getAliasName(): string
  13.     {
  14.         return 'captcha';
  15.     }
  16.     /**
  17.      * {@inheritdoc}
  18.      */
  19.     public function allowArray()
  20.     {
  21.         return false;
  22.     }
  23. }