11 lines
167 B
PHP
11 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
namespace andreskrey\Readability\Nodes\DOM;
|
||
|
|
||
|
use andreskrey\Readability\Nodes\NodeTrait;
|
||
|
|
||
|
class DOMCdataSection extends \DOMCdataSection
|
||
|
{
|
||
|
use NodeTrait;
|
||
|
}
|