Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
saundefined committed Oct 16, 2024
1 parent 823d8d3 commit 8dc9f46
Showing 1 changed file with 5 additions and 19 deletions.
24 changes: 5 additions & 19 deletions releases/8.4/release.inc
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?php

use function releases\php84\common_header;
use function releases\php84\language_chooser;
use function releases\php84\message;
use function releases\php84\common_header;use function releases\php84\language_chooser;use function releases\php84\message;

if (!isset($lang)) {
$lang = 'en';
Expand Down Expand Up @@ -180,14 +178,8 @@ PHP
$dom = new DOMDocument();
$dom->loadHTML(<<<HTML
<main>
<article>
PHP 8.4 is a feature-rich release!
</article>
<article class="featured">
PHP 8.4 adds new DOM classes that are spec-compliant,
keeping the old ones for compatibility.
</article>
<article>PHP 8.4 is a feature-rich release!</article>
<article class="featured">PHP 8.4 adds new DOM classes that are spec-compliant, keeping the old ones for compatibility.</article>
</main>
HTML, LIBXML_NOERROR);
Expand All @@ -210,14 +202,8 @@ PHP
<<<'PHP'
$dom = Dom\HTMLDocument::createFromString(<<<HTML
<main>
<article>
PHP 8.4 is a feature-rich release!
</article>
<article class="featured">
PHP 8.4 adds new DOM classes that are spec-compliant,
keeping the old ones for compatibility.
</article>
<article>PHP 8.4 is a feature-rich release!</article>
<article class="featured">PHP 8.4 adds new DOM classes that are spec-compliant, keeping the old ones for compatibility.</article>
</main>
HTML, LIBXML_NOERROR);
Expand Down

0 comments on commit 8dc9f46

Please sign in to comment.