set('test_me_out', 'You got it boss!');
$this->app = $engine;
}
public function testTheContainer()
{
return $this->app->get('test_me_out');
}
public function testUi()
{
echo 'Route text: The container successfully injected a value into the engine! Engine class: ' . get_class($this->app) . ' test_me_out Value: ' . $this->app->get('test_me_out') . '';
}
}