Good afternoon,
I'm very new to php, and have to create a class for SoapServer from a very specific wsdl. I'm trying to create functions in the class for the operation, but the operation's name has a dash in it. I unfortunately cannot change the name of this operation.
Say the operation's name is "ProvideDocument-b", how do I create a function in a class to handle this?
class MySoapServerClasss {
function ProvideDocument-b($data) {}
}
How can I create a function in my class to handle this operation?
Any help would be appreciated.