Skip to content

Commit

Permalink
Added self prefix to validActions consts, preventing PHP deprecation …
Browse files Browse the repository at this point in the history
…warning
  • Loading branch information
jsimon2022 committed Mar 5, 2020
1 parent d0ffe77 commit 99935df
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 99935df

Please sign in to comment.