summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Rey <[email protected]>2017-11-30 18:58:23 +0000
committerAndres Rey <[email protected]>2017-11-30 18:58:23 +0000
commitfa23ddff97283b7802612592df8f32292871f440 (patch)
tree06da83b111029814d984b22992954b673d2e6279
parentad9f7b246fed8f6316274cbde6baa12485da57e1 (diff)
Add todo
-rw-r--r--src/NodeClass/NodeClassTrait.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/NodeClass/NodeClassTrait.php b/src/NodeClass/NodeClassTrait.php
index 8c045b4..bf34d5e 100644
--- a/src/NodeClass/NodeClassTrait.php
+++ b/src/NodeClass/NodeClassTrait.php
@@ -44,6 +44,8 @@ trait NodeClassTrait
/**
* Initializer. Calculates the current score of the node and returns a full Readability object.
*
+ * @ TODO: I don't like the weightClasses param. How can we get the config here?
+ *
* @param $weightClasses bool Weight classes?
* @return static
*/
@@ -286,13 +288,13 @@ trait NodeClassTrait
* Check if a given node has one of its ancestor tag name matching the
* provided one.
*
- * @param Readability $node
+ * @param DOMElement $node
* @param string $tagName
* @param int $maxDepth
*
* @return bool
*/
- public function hasAncestorTag(self $node, $tagName, $maxDepth = 3)
+ public function hasAncestorTag($node, $tagName, $maxDepth = 3)
{
$depth = 0;
while ($node->parentNode) {