summaryrefslogtreecommitdiff
path: root/vendor/andreskrey/Readability/Nodes/DOM/DOMNode.php
blob: 7c3c4f3a294b8c1e9019405905635028a5a5ec7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace andreskrey\Readability\Nodes\DOM;

use andreskrey\Readability\Nodes\NodeTrait;

/**
 * @method getAttribute($attribute)
 * @method hasAttribute($attribute)
 */
class DOMNode extends \DOMNode
{
    use NodeTrait;
}