Skip to content

Commit

Permalink
CRM-19690 - CRM_Utils_Token::getAnonymousTokenDetails() - Add missing…
Browse files Browse the repository at this point in the history
… `static`

This function is only called once, and it previously lacked test coverage,
so the `static` warning previously snuck through. Fix it!
  • Loading branch information
totten committed Jan 18, 2017
1 parent 6fbbc4b commit 5c92978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Utils/Token.php
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,7 @@ public static function getTokenDetails(
* @return array
* contactDetails with hooks swapped out
*/
public function getAnonymousTokenDetails($contactIDs = array(
public static function getAnonymousTokenDetails($contactIDs = array(
0,
),
$returnProperties = NULL,
Expand Down

0 comments on commit 5c92978

Please sign in to comment.