Skip to content

Commit

Permalink
Added missing comma (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimotu authored Jun 21, 2024
1 parent 3022615 commit a76bf3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/html_formatter.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Since content negotiation will be triggered for any format other than `json` or
2. Move the `'text/html'` entry from the `$supportedResponseFormats` config array to the first position in the array - this way it will be used as the default value.
```php
public array $supportedResponseFormats = [
'text/html'
'text/html',
'application/json',
'application/xml', // machine-readable XML
'text/xml', // human-readable XML
Expand Down

0 comments on commit a76bf3c

Please sign in to comment.