Joli\Jane\OpenApi\JaneOpenApi::__construct PHP Method

__construct() public method

JaneOpenApi constructor.
public __construct ( SchemaParser $schemaParser, ChainGuesser $chainGuesser, Joli\Jane\Generator\ModelGenerator $modelGenerator, NormalizerGenerator $normalizerGenerator, ClientGenerator $clientGenerator, PrettyPrinterAbstract $prettyPrinter, PhpCsFixer\ConfigInterface $fixerConfig = null )
$schemaParser Joli\Jane\OpenApi\SchemaParser\SchemaParser
$chainGuesser Joli\Jane\Guesser\ChainGuesser
$modelGenerator Joli\Jane\Generator\ModelGenerator
$normalizerGenerator Joli\Jane\Generator\NormalizerGenerator
$clientGenerator Joli\Jane\OpenApi\Generator\ClientGenerator
$prettyPrinter PhpParser\PrettyPrinterAbstract
$fixerConfig PhpCsFixer\ConfigInterface
    public function __construct(SchemaParser $schemaParser, ChainGuesser $chainGuesser, ModelGenerator $modelGenerator, NormalizerGenerator $normalizerGenerator, ClientGenerator $clientGenerator, PrettyPrinterAbstract $prettyPrinter, ConfigInterface $fixerConfig = null)
    {
        $this->schemaParser = $schemaParser;
        $this->clientGenerator = $clientGenerator;
        $this->prettyPrinter = $prettyPrinter;
        $this->modelGenerator = $modelGenerator;
        $this->normalizerGenerator = $normalizerGenerator;
        $this->chainGuesser = $chainGuesser;
        $this->fixer = $fixerConfig;
    }