html2pdf mit composer hinzugefügt
This commit is contained in:
29
vendor/spipu/html2pdf/Tests/CrossVersionCompatibility/PhpUnit9/TextParserTestCase.php
vendored
Normal file
29
vendor/spipu/html2pdf/Tests/CrossVersionCompatibility/PhpUnit9/TextParserTestCase.php
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* Html2Pdf Library - Tests
|
||||
*
|
||||
* HTML => PDF converter
|
||||
* distributed under the OSL-3.0 License
|
||||
*
|
||||
* @package Html2pdf
|
||||
* @author Laurent MINGUET <webmaster@html2pdf.fr>
|
||||
* @copyright 2017 Laurent MINGUET
|
||||
*/
|
||||
|
||||
namespace Spipu\Html2Pdf\Tests\CrossVersionCompatibility\PhpUnit9;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Spipu\Html2Pdf\Parsing\TextParser;
|
||||
|
||||
abstract class TextParserTestCase extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var TextParser
|
||||
*/
|
||||
protected $parser;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->parser = new TextParser();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user