Initial xentral_oss_20.3.c9ffacf
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Xentral\Modules\Hubspot\Validators;
|
||||
|
||||
final class ContactPropertyValidator implements ValidatorInterface
|
||||
{
|
||||
|
||||
/** @var string */
|
||||
private $rules;
|
||||
|
||||
public function __construct($rules = 'default')
|
||||
{
|
||||
$this->rules = $rules;
|
||||
}
|
||||
|
||||
public function isValid($data = [])
|
||||
{
|
||||
// TODO: Implement isValid() method.
|
||||
}
|
||||
|
||||
public function validatorRuleDefault()
|
||||
{
|
||||
// TODO: Implement validatorRuleDefault() method.
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user