16 lines
No EOL
324 B
PHP
16 lines
No EOL
324 B
PHP
<?php
|
|
/**
|
|
* @license MIT
|
|
* Copyright 2017 Dustin Wilson, J. King, et al.
|
|
* See LICENSE and AUTHORS files for details
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
namespace MensBeam\HTML\DOM;
|
|
|
|
|
|
class Comment extends CharacterData {
|
|
protected function __construct(\DOMComment $comment) {
|
|
parent::__construct($comment);
|
|
}
|
|
} |