관리-도구
편집 파일: BooleanType.php
<?php namespace Illuminate\JsonSchema\Types; class BooleanType extends Type { /** * Set the type's default value. */ public function default(bool $value): static { $this->default = $value; return $this; } }