I've included errors and warnings in my PHP.INI and the last 2 errors were solved, they were mostly "Creating default object from empty value" - The issue is that I have no idea where to start here.
With the previous (same) error it was easier since there was a public class extended from the current and had an object instantiated so all it took was nesting the instance in an !isset condition.
Yet here
public function forward( $forward )
{
$this->viewBean->_forward = $forward;
}
The error is pointing on the $this. There is no object instantiation and the method above is part of an Abstract Class identified as BaseController Since I can't instantiate an object from an Abstract Class, I truly have no idea how to continue to debug this PHP warning.
Please let me know if any info is amiss, I'll comment back
viewBeanreturns an instance which then_forwardis a variable you're trying to write to inside the Object? this won't be saved in memory since where have you actually stored it??? (clue: you havent)