summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Readability.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Readability.php b/src/Readability.php
index acebd28..a792aeb 100644
--- a/src/Readability.php
+++ b/src/Readability.php
@@ -261,7 +261,7 @@ class Readability extends Element implements ReadabilityInterface
// To prevent the -0 value
// TODO Might not be necessary now
- $this->contentScore = ($score === (double)-0) ? 0 : $score;
+ $this->contentScore = ($score === (float) -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);