Backend.php 409 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Captcha image model
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Captcha\Model\Config\Form;
  12. class Backend extends \Magento\Captcha\Model\Config\Form\AbstractForm
  13. {
  14. /**
  15. * @var string
  16. */
  17. protected $_configPath = 'captcha/backend/areas';
  18. }