File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1414 * @author Steve Rhoades <[email protected] > 1515 * @author Marc Riemer <[email protected] > 1616 */
17- class ClaimExtractor implements ClaimExtractorIntercace
17+ class ClaimExtractor implements ClaimExtractorInterface
1818{
1919 /**
2020 * claimSets
Original file line number Diff line number Diff line change 22
33namespace League \OAuth2 \Server ;
44
5- interface ClaimExtractorIntercace
5+ interface ClaimExtractorInterface
66{
77 /**
88 * For given scopes and aggregated claims get all claims that have been configured on the extractor.
Original file line number Diff line number Diff line change 77use League \Event \EmitterAwareTrait ;
88use League \Event \EmitterInterface ;
99use League \OAuth2 \Server \ClaimExtractor ;
10- use League \OAuth2 \Server \ClaimExtractorIntercace ;
10+ use League \OAuth2 \Server \ClaimExtractorInterface ;
1111use League \OAuth2 \Server \Entities \AccessTokenEntityInterface ;
1212use League \OAuth2 \Server \Entities \ClaimSetInterface ;
1313use League \OAuth2 \Server \Entities \ScopeEntityInterface ;
@@ -51,17 +51,17 @@ class IdTokenResponse extends BearerTokenResponse
5151 protected $ emitter ;
5252
5353 /**
54- * ClaimExtractorIntercace
54+ * ClaimExtractorInterface
5555 *
56- * @var ClaimExtractorIntercace
56+ * @var ClaimExtractorInterface
5757 */
5858 protected $ extractor ;
5959
6060 public function __construct (
6161 IdTokenRepositoryInterface $ builder ,
6262 ClaimSetRepositoryInterface $ claimRepository ,
6363 EmitterInterface $ emitter ,
64- ?ClaimExtractorIntercace $ extractor = null
64+ ?ClaimExtractorInterface $ extractor = null
6565 ) {
6666 if (!$ extractor ) {
6767 $ this ->extractor = new ClaimExtractor ();
You can’t perform that action at this time.
0 commit comments