Файл: vendor/laravel/framework/src/Illuminate/JsonSchema/Types/ArrayType.php
Строк: 54
<?php
namespace IlluminateJsonSchemaTypes;
class ArrayType extends Type
{
/**
* The minimum number of items (inclusive).
*/
protected ?int $minItems = null;
/**
* The maximum number of items (inclusive).
*/
protected ?int $maxItems = null;
/**
* The schema of the items contained in the array.
*/
protected ?Type $items = null;
/**
* Whether the array items must be unique.
*/
protected ?bool $uniqueItems = null;
/**
* Set the minimum number of items (inclusive).
*/
public function min(int $value): static
{
$this->minItems = $value;
return $this;
}
/**
* Set the maximum number of items (inclusive).
*/
public function max(int $value): static
{
$this->maxItems = $value;
return $this;
}
/**
* Set the schema for array items.
*/
public function items(Type $type): static
{
$this->items = $type;
return $this;
}
/**
* Indicate that the array items must be unique.
*/
public function unique(bool $unique = true): static
{
$this->uniqueItems = $unique ?: null;
return $this;
}
/**
* Set the type's default value.
*
* @param array<int, mixed> $value
*/
public function default(array $value): static
{
$this->default = $value;
return $this;
}
}