Skip to content

Syntax Fix for Role Check

Pre-release
Pre-release
Compare
Choose a tag to compare
@vbhayden vbhayden released this 17 Oct 20:39
d3eb4a2

Fixes a syntax issue for the role check function doesPayloadSatisfyRoleRequirement($payload).

Level clarification:

function doesPayloadSatisfyRoleRequirement($payload)

to

private function doesPayloadSatisfyRoleRequirement($payload)

and a $this-> object specifier

$satisfiesRoleRequirement = doesPayloadSatisfyRoleRequirement($payload);

to

$satisfiesRoleRequirement = $this->doesPayloadSatisfyRoleRequirement($payload);