Skip to content

Commit

Permalink
ENH Use symfony/validation logic
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Sep 24, 2024
1 parent 9e49bb5 commit a1129d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/PersistedQuery/HTTPProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
use SilverStripe\Core\Config\Configurable;
use SilverStripe\Core\Injector\Injectable;
use SilverStripe\Core\Injector\Injector;
use SilverStripe\Core\Validation\ConstraintValidator;
use Symfony\Component\Validator\Constraints\NotBlank;
use Symfony\Component\Validator\Constraints\Url;

/**
* Class HTTPProvider
Expand Down Expand Up @@ -108,7 +111,7 @@ public function getByID(string $queryID, string $schemaKey = 'default'): ?string
public function setSchemaMapping(array $mapping): HTTPProvider
{
foreach ($mapping as $schemaKey => $url) {
if (!filter_var($url, FILTER_VALIDATE_URL)) {
if (!ConstraintValidator::validate($url, [new Url(), new NotBlank()])->isValid()) {
throw new InvalidArgumentException(
'setSchemaMapping accepts an array of schema keys to URLs'
);
Expand Down
2 changes: 1 addition & 1 deletion tests/Schema/AbstractTypeRegistryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public static function provideRebuildOnMissing(): array

private function getInstance()
{
$registry = new Class extends AbstractTypeRegistry
$registry = new class extends AbstractTypeRegistry
{
protected static function getSourceDirectory(): string
{
Expand Down

0 comments on commit a1129d1

Please sign in to comment.