Rename Validator\Validator to Validator\GenericValidator

This commit is contained in:
Ben Ramsey
2020-01-13 16:08:29 -06:00
parent 2ad77d9ca7
commit 5d1f106882
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ use Ramsey\Uuid\Provider\Node\SystemNodeProvider;
use Ramsey\Uuid\Provider\NodeProviderInterface;
use Ramsey\Uuid\Provider\Time\SystemTimeProvider;
use Ramsey\Uuid\Provider\TimeProviderInterface;
use Ramsey\Uuid\Validator\Validator;
use Ramsey\Uuid\Validator\GenericValidator;
use Ramsey\Uuid\Validator\ValidatorInterface;
/**
@@ -147,7 +147,7 @@ class FeatureSet
$this->nodeProvider = $this->buildNodeProvider();
$this->randomGenerator = $this->buildRandomGenerator();
$this->setTimeProvider(new SystemTimeProvider());
$this->validator = new Validator();
$this->validator = new GenericValidator();
}
/**