<?php
declare(strict_types=1);
namespace App\Entity\Customer;
use Doctrine\ORM\Mapping as ORM;
use Sylius\Component\Core\Model\Customer as BaseCustomer;
use EWZ\Bundle\RecaptchaBundle\Validator\Constraints as Recaptcha;
/**
* @ORM\Entity
* @ORM\Table(name="sylius_customer")
*/
class Customer extends BaseCustomer
{
/**
* @Recaptcha\IsTrue
*/
private $recaptcha;
public function getRecaptcha() {
return $this->recaptcha;
}
}