2018-06-20 11:58:09 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace andreskrey\Readability\Nodes\DOM;
|
|
|
|
|
|
|
|
use andreskrey\Readability\Nodes\NodeTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method getAttribute($attribute)
|
2019-02-13 11:49:27 +00:00
|
|
|
* @method hasAttribute($attribute)
|
2018-06-20 11:58:09 +00:00
|
|
|
*/
|
|
|
|
class DOMNode extends \DOMNode
|
|
|
|
{
|
|
|
|
use NodeTrait;
|
|
|
|
}
|