Otóż mam następujący problem.
$this->mv = $this->_actionController -> $this->_methodName();
Przy takim użyciu klasy wyskakuje bład
"Catchable fatal error: Object of class Dispatcher could not be converted to string in"
Natomiast jeśli tylko zamienię na:
$this->mv = $this->_actionController -> $_methodName();
To problem znika,
zależy mi jednak na tym żeby skorzystać ze zmiennej dla całej klasy $this->_methodName
Jest jakiś sposób na to?