swaggest/php-json-schema

View on GitHub
src/Exception/Error.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Swaggest\JsonSchema\Exception;

use Swaggest\JsonSchema\InvalidValue;

class Error
{
    /** @var string */
    public $error;
    /** @var string[] */
    public $schemaPointers;
    /** @var string */
    public $dataPointer;
    /** @var string */
    public $processingPath;
    /** @var Error[] */
    public $subErrors;
}