15 lines
231 B
PHP
15 lines
231 B
PHP
<?php
|
|
|
|
namespace andreskrey\Readability\Nodes\DOM;
|
|
|
|
use andreskrey\Readability\Nodes\NodeTrait;
|
|
|
|
/**
|
|
* @method getAttribute($attribute)
|
|
* @method hasAttribute($attribute)
|
|
*/
|
|
class DOMNode extends \DOMNode
|
|
{
|
|
use NodeTrait;
|
|
}
|