芝麻web文件管理V1.00
编辑当前文件:/home/projzpbv/www/wp-content/plugins/mailpoet/lib/Validator/Schema/IntegerSchema.php
'integer', ]; public function minimum(int $value): self { return $this->updateSchemaProperty('minimum', $value) ->unsetSchemaProperty('exclusiveMinimum'); } public function exclusiveMinimum(int $value): self { return $this->updateSchemaProperty('minimum', $value) ->updateSchemaProperty('exclusiveMinimum', true); } public function maximum(int $value): self { return $this->updateSchemaProperty('maximum', $value) ->unsetSchemaProperty('exclusiveMaximum'); } public function exclusiveMaximum(int $value): self { return $this->updateSchemaProperty('maximum', $value) ->updateSchemaProperty('exclusiveMaximum', true); } public function multipleOf(int $value): self { return $this->updateSchemaProperty('multipleOf', $value); } }