SvgDrawerTestCase.php 379 B

12345678910111213
  1. <?php
  2. namespace Spipu\Html2Pdf\Tests\CrossVersionCompatibility;
  3. if (HTML2PDF_PHPUNIT_VERSION === 9) {
  4. abstract class SvgDrawerTestCase extends \Spipu\Html2Pdf\Tests\CrossVersionCompatibility\PhpUnit9\SvgDrawerTestCase
  5. {
  6. }
  7. } else {
  8. abstract class SvgDrawerTestCase extends \Spipu\Html2Pdf\Tests\CrossVersionCompatibility\PhpUnit5\SvgDrawerTestCase
  9. {
  10. }
  11. }