Skip to content

Commit

Permalink
Merge pull request #33 from exussum12/fixPhp7Issue
Browse files Browse the repository at this point in the history
Fix for PHP 7 issue (#30)
  • Loading branch information
JWHennessey authored Jan 3, 2018
2 parents e33b8db + f73826e commit 9bef93f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/PHPInsight/Sentiment.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ class Sentiment {
* @var array
*/
private $prior = array(
'pos' => 0.333333333333,
'neg' => 0.333333333333,
'neu' => 0.333333333334
'pos' => 0.333,
'neg' => 0.333,
'neu' => 0.334,
);

/**
Expand Down

0 comments on commit 9bef93f

Please sign in to comment.