Skip to content

Commit

Permalink
Merge pull request #1 from jsimon1/master
Browse files Browse the repository at this point in the history
Added self prefix to validActions consts, prevents PHP deprecation warning
  • Loading branch information
snoop0x7b authored Mar 5, 2020
2 parents d0ffe77 + 99935df commit 233bc49
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/Personator.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ class Personator {
const APPEND = 'Append';

private $validActions = [
CHECK,
VERIFY,
MOVE,
APPEND
self::CHECK,
self::VERIFY,
self::MOVE,
self::APPEND
];

private $licenseKey;
Expand Down Expand Up @@ -72,4 +72,4 @@ public function doRequest(array $actions, array $addressParams) {
}


}
}

0 comments on commit 233bc49

Please sign in to comment.