Habari\HiEngine::__construct PHP Метод

__construct() публичный Метод

Sets up the stream protocol handler
public __construct ( )
    public function __construct()
    {
        $streams = stream_get_wrappers();
        if (!in_array('hi', $streams)) {
            stream_wrapper_register("hi", "\\Habari\\HiEngineParser") or die(_t("Failed to register HiEngine stream protocol"));
        }
    }