We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 3ba119f commit 99c706dCopy full SHA for 99c706d
tests/Output/QRImageTest.php
@@ -29,7 +29,6 @@ public function setUp():void{
29
30
if(!extension_loaded('gd')){
31
$this->markTestSkipped('ext-gd not loaded');
32
- return;
33
}
34
35
parent::setUp();
@@ -50,7 +49,7 @@ protected function getOutputInterface(QROptions $options):QROutputInterface{
50
49
public function types():array{
51
return [
52
'png' => [QRCode::OUTPUT_IMAGE_PNG],
53
- 'gif' => [QRCode::OUTPUT_IMAGE_GIF],
+# 'gif' => [QRCode::OUTPUT_IMAGE_GIF], // causes trouble in PHP 8.4
54
'jpg' => [QRCode::OUTPUT_IMAGE_JPG],
55
];
56
0 commit comments