1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-25 06:40:48 +02:00

Switch EncodedImage::class to temporary stream resource

This commit is contained in:
Oliver Vogel
2024-10-06 11:36:17 +02:00
committed by GitHub
parent e244bc9c93
commit e77a33394c
44 changed files with 269 additions and 246 deletions

View File

@@ -19,6 +19,6 @@ final class BmpEncoderTest extends GdTestCase
$image = $this->createTestImage(3, 2);
$encoder = new BmpEncoder();
$result = $encoder->encode($image);
$this->assertMediaType(['image/bmp', 'image/x-ms-bmp'], (string) $result);
$this->assertMediaType(['image/bmp', 'image/x-ms-bmp'], $result);
}
}