for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright (c) 2019. Volodymyr Hryvinskyi. All rights reserved.
* @author: <mailto:[email protected]>
* @github: <https://github.com/hryvinskyi>
*/
declare(strict_types=1);
namespace Hryvinskyi\InvisibleCaptcha\Model\Verify\Adminhtml;
use Hryvinskyi\InvisibleCaptcha\Model\AbstractCheckEnabledVerify;
* Class Login
class Login extends AbstractCheckEnabledVerify
{
public function verify(): bool
return parent::verify() && $this->getBackendConfig()->hasEnabledLogin();
}