<?phpnamespace IlluminateJsonSchemaTypes;class BooleanType extends Type{ /** * Set the type's default value. */ public function default(bool $value): static { $this->default = $value; return $this; }}