Jarves\Jarves::__construct PHP Method

__construct() public method

public __construct ( JarvesConfig $jarvesConfig, string $adminPrefix, string $cacheDir, string $rootDir, string $environment, string $debugMode, Symfony\Component\HttpKernel\KernelInterface $kernel, Symfony\Component\HttpFoundation\RequestStack $requestStack, Symfony\Component\EventDispatcher\EventDispatcherInterface $eventDispatcher, FieldTypes $fieldTypes )
$jarvesConfig JarvesConfig
$adminPrefix string
$cacheDir string
$rootDir string
$environment string
$debugMode string
$kernel Symfony\Component\HttpKernel\KernelInterface
$requestStack Symfony\Component\HttpFoundation\RequestStack
$eventDispatcher Symfony\Component\EventDispatcher\EventDispatcherInterface
$fieldTypes Jarves\Admin\FieldTypes\FieldTypes
    function __construct(JarvesConfig $jarvesConfig, $adminPrefix, $cacheDir, $rootDir, $environment, $debugMode, KernelInterface $kernel, RequestStack $requestStack, EventDispatcherInterface $eventDispatcher, FieldTypes $fieldTypes)
    {
        Configuration\Model::$serialisationJarvesCore = $this;
        $this->adminPrefix = $adminPrefix;
        $this->requestStack = $requestStack;
        $this->cacheDir = $cacheDir;
        $this->rootDir = $rootDir;
        $this->environment = $environment;
        $this->debugMode = $debugMode;
        $this->kernel = $kernel;
        $this->eventDispatcher = $eventDispatcher;
        $this->fieldTypes = $fieldTypes;
        $this->jarvesConfig = $jarvesConfig;
    }