We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 13dc120 + 7b49bbe commit d7503b6Copy full SHA for d7503b6
src/Analyzer.php
@@ -32,6 +32,7 @@ public function __construct($lexicon_file = "Lexicons/vader_sentiment_lexicon.tx
32
*/
33
public function IsNegated($wordToTest, $include_nt = true)
34
{
35
+ $wordToTest = strtolower($wordToTest);
36
if (in_array($wordToTest, Config::NEGATE)) {
37
return true;
38
}
0 commit comments