Lcobucci\JWT\Configuration::getClaimFactory PHP Method

getClaimFactory() private method

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