Lcobucci\JWT\ConfigurationTest::getParserShouldReturnAParserWithDefaultDecoderAndClaimFactory PHP Метод

getParserShouldReturnAParserWithDefaultDecoderAndClaimFactory() публичный Метод

    public function getParserShouldReturnAParserWithDefaultDecoderAndClaimFactory()
    {
        $config = new Configuration();
        $parser = $config->getParser();
        self::assertInstanceOf(Parser::class, $parser);
        self::assertAttributeNotSame($this->decoder, 'decoder', $parser);
        self::assertAttributeNotSame($this->claimFactory, 'claimFactory', $parser);
    }