I'm stuck.
I have a class X that must use class Y... but I cannot get Y to work inside X 🙁
inside class X I put:
var $Yclass = "";
$this->Yclass = new Y;
$this->Xvar = $this->Yclass->Ymethod();
there are no parse errors, but $this->Xvar is empty....
Am I missing something obvious?
Steve