Bolt\Configuration\Environment::__construct PHP Method

__construct() public method

Constructor.
public __construct ( string $appPath, string $viewPath, Cache $cache, Pimpl\Pimple $actions, string $boltVersion )
$appPath string
$viewPath string
$cache Bolt\Cache
$actions Pimpl\Pimple
$boltVersion string
    public function __construct($appPath, $viewPath, Cache $cache, Pimple $actions, $boltVersion)
    {
        $this->filesystem = new Filesystem();
        $this->appPath = rtrim($appPath, '/');
        $this->viewPath = rtrim($viewPath, '/');
        $this->cache = $cache;
        $this->actions = $actions;
        $this->boltVersion = $boltVersion;
    }