1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-19 12:11:26 +02:00

Fix typo in mime type. (#1399)

This commit is contained in:
ADmad
2024-10-27 15:40:32 +05:30
committed by GitHub
parent 3618c8fbaf
commit f712d684db

View File

@@ -20,6 +20,6 @@ class AvifEncoder extends GenericAvifEncoder implements SpecializedInterface
{ {
return $this->createEncodedImage(function ($pointer) use ($image) { return $this->createEncodedImage(function ($pointer) use ($image) {
imageavif($image->core()->native(), $pointer, $this->quality); imageavif($image->core()->native(), $pointer, $this->quality);
}, 'image/aviv'); }, 'image/avif');
} }
} }