@@ -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();
@@ -29,9 +29,6 @@ class QRFpdfTest extends QROutputTestAbstract{
if(!class_exists(FPDF::class)){
$this->markTestSkipped('FPDF not available');
parent::setUp();
@@ -26,7 +26,6 @@ class QRImageTest extends QROutputTestAbstract{
if(!extension_loaded('gd')){
$this->markTestSkipped('ext-gd not loaded');
@@ -30,9 +30,6 @@ class QRImagickTest extends QROutputTestAbstract{
if(!extension_loaded('imagick')){
$this->markTestSkipped('ext-imagick not loaded');
@@ -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');
$this->options->outputType = $type;