Lcobucci\JWT\Configuration::getClaimFactory PHP Méthode

getClaimFactory() private méthode

private getClaimFactory ( ) : Factory
Résultat Lcobucci\JWT\Claim\Factory
    private function getClaimFactory() : ClaimFactory
    {
        if ($this->claimFactory === null) {
            $this->claimFactory = new ClaimFactory();
        }
        return $this->claimFactory;
    }