aboutsummaryrefslogtreecommitdiff
path: root/docs/08_Format_API
diff options
context:
space:
mode:
authorGravatar Dag <me@dvikan.no> 2022-05-09 23:32:45 +0200
committerGravatar Dag <me@dvikan.no> 2022-05-09 23:32:45 +0200
commit8982995445bb04ee164979ab5bcd1bd48f46ca4f (patch)
tree24708bdd9ef4586490e9fb77e9244cc04d2b0fcb /docs/08_Format_API
parent76084cdccae8de22d67601caee542eaf1f022b3c (diff)
downloadrss-bridge-8982995445bb04ee164979ab5bcd1bd48f46ca4f.tar.gz
rss-bridge-8982995445bb04ee164979ab5bcd1bd48f46ca4f.tar.zst
rss-bridge-8982995445bb04ee164979ab5bcd1bd48f46ca4f.zip
refactor: remove unused method
Diffstat (limited to 'docs/08_Format_API')
-rw-r--r--docs/08_Format_API/03_FormatAbstract.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/08_Format_API/03_FormatAbstract.md b/docs/08_Format_API/03_FormatAbstract.md
index 3bb91bfd..82e42718 100644
--- a/docs/08_Format_API/03_FormatAbstract.md
+++ b/docs/08_Format_API/03_FormatAbstract.md
@@ -3,7 +3,6 @@ The `FormatAbstract` class implements the [`FormatInterface`](../08_Format_API/0
* [setContentType](#the-setcontenttype-function)
* [callContentType](#the-callcontenttype-function)
* [sanitizeHtml](#the-sanitizehtml-function)
-* [array_trim](#the-array_trim-function)
# Functions
@@ -30,11 +29,3 @@ The `sanitizeHtml` function receives an HTML formatted string and returns the st
```PHP
sanitizeHtml(string $html): string
```
-
-## The `array_trim` function
-
-The `array_trim` function receives an array of strings and returns the same array with all elements trimmed (like using the `trim` function on all elements)
-
-```PHP
-array_trim(array $elements): array
-```