Frontend\Core\Engine\Base\Config::__construct PHP Method

__construct() public method

public __construct ( Symfony\Component\HttpKernel\KernelInterface $kernel, string $module )
$kernel Symfony\Component\HttpKernel\KernelInterface
$module string The module wherefore this is the configuration-file.
    public function __construct(KernelInterface $kernel, $module)
    {
        parent::__construct($kernel);
        $this->module = (string) $module;
        // read the possible actions based on the files
        $this->setPossibleActions();
    }