The function signature for `editor_textarea` in common.php has been updated to accept `$detail` as a nullable string. This change allows the function to handle cases where `$detail` might not be provided or could be null. ```php - function editor_textarea(string $detail, string $name = 'desc', string $placeholder = '请输入'): string + function editor_textarea(?string $detail, string $name = 'desc', string $placeholder = '请输入'): string ```
3.3 KiB
3.3 KiB