diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/08_Format_API/02_FormatInterface.md | 2 | ||||
-rw-r--r-- | docs/08_Format_API/03_FormatAbstract.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/08_Format_API/02_FormatInterface.md b/docs/08_Format_API/02_FormatInterface.md index 88448c38..f216092c 100644 --- a/docs/08_Format_API/02_FormatInterface.md +++ b/docs/08_Format_API/02_FormatInterface.md @@ -82,7 +82,7 @@ getExtraInfos(): array The `getMimeType` function returns the expected [MIME type](https://en.wikipedia.org/wiki/Media_type#Common_examples) of the format's output. ```PHP -getMimeType(): string +parse_mime_type(): string ``` # Template diff --git a/docs/08_Format_API/03_FormatAbstract.md b/docs/08_Format_API/03_FormatAbstract.md index 8cf0418f..cb206b85 100644 --- a/docs/08_Format_API/03_FormatAbstract.md +++ b/docs/08_Format_API/03_FormatAbstract.md @@ -9,5 +9,5 @@ The `FormatAbstract` class implements the [`FormatInterface`](../08_Format_API/0 The `sanitizeHtml` function receives an HTML formatted string and returns the string with disabled `<script>`, `<iframe>` and `<link>` tags. ```PHP -sanitizeHtml(string $html): string +sanitize_html(string $html): string ``` |