Bolt\Stack::__construct PHP Method

__construct() public method

Constructor.
public __construct ( Matcher $matcher, Users $users, Symfony\Component\HttpFoundation\Session\SessionInterface $session, string[] $acceptedFileTypes )
$matcher Bolt\Filesystem\Matcher
$users Users
$session Symfony\Component\HttpFoundation\Session\SessionInterface
$acceptedFileTypes string[]
    public function __construct(Filesystem\Matcher $matcher, Users $users, SessionInterface $session, $acceptedFileTypes)
    {
        $this->matcher = $matcher;
        $this->users = $users;
        $this->session = $session;
        $this->acceptedFileTypes = $acceptedFileTypes;
    }