swaggest/php-json-schema

View on GitHub
src/Structure/Nested.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Swaggest\JsonSchema\Structure;

use Swaggest\JsonSchema\SchemaContract;

class Nested
{
    /** @var SchemaContract */
    public $schema;
    public function __construct(SchemaContract $schema)
    {
        $this->schema = $schema;
    }
}