Fix: Remove unused imports

This commit is contained in:
Andreas Möller 2015-07-12 23:04:55 -04:00
parent d6a1d6d8d5
commit 72e81d6821
2 changed files with 2 additions and 8 deletions

View File

@ -3,7 +3,6 @@
namespace JsonSchema\Uri\Retrievers;
use JsonSchema\Validator;
use JsonSchema\Uri\Retrievers\UriRetrieverInterface;
/**
* URI retrieved based on a predefined array of schemas
@ -36,7 +35,7 @@ class PredefinedArray extends AbstractRetriever
$this->schemas = $schemas;
$this->contentType = $contentType;
}
/**
* {@inheritDoc}
* @see \JsonSchema\Uri\Retrievers\UriRetrieverInterface::retrieve()
@ -52,4 +51,4 @@ class PredefinedArray extends AbstractRetriever
return $this->schemas[$uri];
}
}
}

View File

@ -12,11 +12,6 @@ namespace JsonSchema;
use JsonSchema\Constraints\SchemaConstraint;
use JsonSchema\Constraints\Constraint;
use JsonSchema\Exception\InvalidSchemaMediaTypeException;
use JsonSchema\Exception\JsonDecodingException;
use JsonSchema\Uri\Retrievers\UriRetrieverInterface;
/**
* A JsonSchema Constraint
*