Bolt\Extension\Manager::__construct PHP Method

__construct() public method

Constructor.
public __construct ( Bolt\Filesystem\FilesystemInterface $extensions, Bolt\Filesystem\FilesystemInterface $web, Bolt\Logger\FlashLoggerInterface $flashLogger, Config $config )
$extensions Bolt\Filesystem\FilesystemInterface
$web Bolt\Filesystem\FilesystemInterface
$flashLogger Bolt\Logger\FlashLoggerInterface
$config Bolt\Config
    public function __construct(FilesystemInterface $extensions, FilesystemInterface $web, FlashLoggerInterface $flashLogger, Config $config)
    {
        $this->extFs = $extensions;
        $this->webFs = $web;
        $this->flashLogger = $flashLogger;
        $this->config = $config;
    }