Phastlight\Module\FileSystem\Main::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        $this->fileFlags = array('r' => \UV::O_RDONLY, 'w' => \UV::O_WRONLY | \UV::O_CREAT, 'a' => \UV::O_APPEND | \UV::O_CREAT | \UV::O_WRONLY, 'w+' => \UV::O_RDONLY | \UV::O_WRONLY);
    }