mirror of
https://codeberg.org/vlw/php-mime-types.git
synced 2025-09-13 18:53:41 +02:00
doc(fix): add missing semicolons
This commit is contained in:
parent
88406487ec
commit
cbea23108a
1 changed files with 2 additions and 2 deletions
|
@ -12,8 +12,8 @@ $mime->get_ext_from_type("image/webp"); // "webp"
|
|||
$mime->get_type_from_ext("webp"); // "image/webp"
|
||||
|
||||
// From pathname
|
||||
$mime->get_ext_from_file("path/to/file.webp") // "webp"
|
||||
$mime->get_type_from_file("path/to/file.webp) // "image/webp"
|
||||
$mime->get_ext_from_file("path/to/file.webp"); // "webp"
|
||||
$mime->get_type_from_file("path/to/file.webp); // "image/webp"
|
||||
```
|
||||
|
||||
# Installation
|
||||
|
|
Loading…
Add table
Reference in a new issue