Skip to content

Commit 9f367f8

Browse files
committed
chore: fix typo in variable name
1 parent 5f36540 commit 9f367f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Introspect.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ public function mustHaveScopes(array $requiredScopes = [])
4848
{
4949
$result = $this->getIntrospectionResult();
5050
$givenScopes = explode(' ', $result['scope']);
51-
$misingScopes = array_diff($requiredScopes, $givenScopes);
51+
$missingScopes = array_diff($requiredScopes, $givenScopes);
5252

53-
if (count($misingScopes) > 0) {
54-
throw new MissingScopeException($misingScopes);
53+
if (count($missingScopes) > 0) {
54+
throw new MissingScopeException($missingScopes);
5555
}
5656
}
5757

0 commit comments

Comments
 (0)