How can I use PHP operator names in a method (controller)?
Example:
public function new() {
//Código aqui
}
Notice that I used the name new
the same one used to instantiate an object.
How to ignore this name in a method?
How can I use PHP operator names in a method (controller)?
Example:
public function new() {
//Código aqui
}
Notice that I used the name new
the same one used to instantiate an object.
How to ignore this name in a method?