export_php:method Person::setName(string $name): void
(name *C.zend_string)
| 28 | |
| 29 | // export_php:method Person::setName(string $name): void |
| 30 | func (p *PersonStruct) SetName(name *C.zend_string) { |
| 31 | p.Name = frankenphp.GoString(unsafe.Pointer(name)) |
| 32 | } |
| 33 | |
| 34 | // export_php:method Person::getName(): string |
| 35 | func (p *PersonStruct) GetName() unsafe.Pointer { |
nothing calls this directly
no test coverage detected