mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
26 lines
477 B
PHP
26 lines
477 B
PHP
<?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.
|
|
}
|
|
}
|