From a986f0771dac2e274476246539f2ae3f2cb42cc4 Mon Sep 17 00:00:00 2001 From: Andres Rey Date: Fri, 4 Nov 2016 19:10:53 +0000 Subject: Small comment --- src/Readability.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/Readability.php') diff --git a/src/Readability.php b/src/Readability.php index ed1d2be..acebd28 100644 --- a/src/Readability.php +++ b/src/Readability.php @@ -260,7 +260,8 @@ class Readability extends Element implements ReadabilityInterface if (get_class($this->node) !== 'DOMDocument') { // To prevent the -0 value - $this->contentScore = ($score === (float) -0) ? 0 : $score; + // TODO Might not be necessary now + $this->contentScore = ($score === (double)-0) ? 0 : $score; // Set score in an attribute of the tag to prevent losing it while creating new Readability objects. $this->node->setAttribute('readability', $this->contentScore); -- cgit v1.2.3