This commit is contained in:
codemasher
2021-12-03 15:44:14 +01:00
parent 21b414cab0
commit eac6f7ddac
5 changed files with 0 additions and 13 deletions
-3
View File
@@ -209,9 +209,6 @@ final class QRMatrixTest extends TestCase{
if($version < 7){
$this->markTestSkipped('N/A (Version < 7)');
/** @noinspection PhpUnreachableStatementInspection */
return;
}
$matrix = $this->getMatrix($version)->setVersionNumber();
-3
View File
@@ -29,9 +29,6 @@ class QRFpdfTest extends QROutputTestAbstract{
if(!class_exists(FPDF::class)){
$this->markTestSkipped('FPDF not available');
/** @noinspection PhpUnreachableStatementInspection */
return;
}
parent::setUp();
-1
View File
@@ -26,7 +26,6 @@ class QRImageTest extends QROutputTestAbstract{
if(!extension_loaded('gd')){
$this->markTestSkipped('ext-gd not loaded');
return;
}
parent::setUp();
-3
View File
@@ -30,9 +30,6 @@ class QRImagickTest extends QROutputTestAbstract{
if(!extension_loaded('imagick')){
$this->markTestSkipped('ext-imagick not loaded');
/** @noinspection PhpUnreachableStatementInspection */
return;
}
parent::setUp();
-3
View File
@@ -124,9 +124,6 @@ abstract class QROutputTestAbstract extends TestCase{
&& in_array($type, [QRCode::OUTPUT_IMAGE_JPG, QRCode::OUTPUT_IMAGICK, QRCode::OUTPUT_MARKUP_SVG])
){
$this::markTestSkipped('may fail on CI');
/** @noinspection PhpUnreachableStatementInspection */
return;
}
$this->options->outputType = $type;