<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wol-soft / php-json-schema-model-generator example snippets
(new ModelGenerator())
->generateModels(new RecursiveDirectoryProvider(__DIR__ . '/schema'), __DIR__ . '/result');
$generator = new ModelGenerator(
(new GeneratorConfiguration())
->setNamespacePrefix('MyApp\Model')
->setImmutable(false)
);
$generator
->generateModelDirectory(__DIR__ . '/result');
->generateModels(new RecursiveDirectoryProvider(__DIR__ . '/schema'), __DIR__ . '/result');
// the constructor takes an array with data which is validated and applied to the model
public function __construct(array $modelData);
// the method getRawModelDataInput always delivers the raw input which was provided on instantiation
public function getRawModelDataInput(): array;
// getters to fetch the validated properties. Age is nullable as it's not
// Throws an exception as the ed value for name'
$person = new Person([]);
// Throws an exception as the name provides an invalid value.
// Exception: 'Invalid type for name. Requires string, got int'
$person = new Person(['name' => 12]);
// Throws an exception as the age contains an invalid value due to the minimum definition.
// Exception: 'Value for age must not be smaller than 0'
$person = new Person(['name' => 'Albert', 'age' => -1]);
// A valid example as the age isn't
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.