PHPPM\ProcessSlave::__construct PHP Method

__construct() public method

public __construct ( $bridgeName = null, $appBootstrap, array $config = [] )
$config array
    public function __construct($bridgeName = null, $appBootstrap, array $config = [])
    {
        $this->config = $config;
        $this->appBootstrap = $appBootstrap;
        $this->bridgeName = $bridgeName;
        $this->baseServer = $_SERVER;
        if ($this->config['session_path']) {
            session_save_path($this->config['session_path']);
        }
    }