Files
frankenphp/mercure-skip.go
Kévin Dunglas 41cb2bbeaa feat: mercure_publish() PHP function to dispatch Mercure updates (#1927)
* feat: mercure_publish() PHP function to dispatch Mercure updates

* fix stubs for old versions

* review

* cleanup and fixes
2025-11-18 09:59:53 +01:00

19 lines
345 B
Go

//go:build nomercure
package frankenphp
// #include <stdint.h>
// #include <php.h>
import "C"
import (
"unsafe"
)
type mercureContext struct {
}
//export go_mercure_publish
func go_mercure_publish(_ C.uintptr_t, _ *C.struct__zval_struct, _ unsafe.Pointer, _ bool, _, _ unsafe.Pointer, _ uint64) (*C.zend_string, C.short) {
return nil, 3
}