From 0226e0ca0dc70f9a0310b3eef045ee1c1e0ca3ac Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 13 Dec 2022 20:00:46 +0300 Subject: split into a separate repo --- vendor/masterminds/html5/test/HTML5/TestCase.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 vendor/masterminds/html5/test/HTML5/TestCase.php (limited to 'vendor/masterminds/html5/test/HTML5/TestCase.php') diff --git a/vendor/masterminds/html5/test/HTML5/TestCase.php b/vendor/masterminds/html5/test/HTML5/TestCase.php new file mode 100644 index 0000000..a25ae21 --- /dev/null +++ b/vendor/masterminds/html5/test/HTML5/TestCase.php @@ -0,0 +1,23 @@ +test'; + + const DOC_CLOSE = ''; + + public function getInstance(array $options = array()) + { + return new HTML5($options); + } + + protected function wrap($fragment) + { + return self::DOC_OPEN . $fragment . self::DOC_CLOSE; + } +} -- cgit v1.2.3