composer update
This commit is contained in:
parent
f6abc3dce2
commit
71dfaca858
1753 changed files with 45274 additions and 14619 deletions
7
vendor/masterminds/html5/example.php
vendored
7
vendor/masterminds/html5/example.php
vendored
|
@ -1,9 +1,8 @@
|
|||
<?php
|
||||
|
||||
require "vendor/autoload.php";
|
||||
require 'vendor/autoload.php';
|
||||
use Masterminds\HTML5;
|
||||
|
||||
|
||||
$html = <<< 'HERE'
|
||||
<html>
|
||||
<head>
|
||||
|
@ -28,6 +27,6 @@ HERE;
|
|||
$html5 = new HTML5();
|
||||
$dom = $html5->loadHTML($html);
|
||||
|
||||
print "Converting to HTML 5\n";
|
||||
echo "Converting to HTML 5\n";
|
||||
|
||||
$html5->save($dom, fopen("php://stdin", 'w'));
|
||||
$html5->save($dom, fopen('php://stdin', 'w'));
|
||||
|
|
Reference in a new issue