Just a quick question, wondering if objects retrieved from the service container in Symfony2 are returned by reference or as a copy?
The reason I ask is because I want to know if I do something like:
public function helloAction()
{
$mailer = $this->get('acme.mailer');
$mailer->shutdown();
}
in a controller, and the shutdown() method does something internally to the object, will the acme.mailer service be "shutdown" in the container?
In other words, can I alter a service permanently after getting it from the container? Is this good practice?
Thanks