Marc J. Schmidt
Marc J. Schmidt
Yes, exactly. In [Laravel's Bootstrap class](https://github.com/php-pm/php-pm-httpkernel/blob/master/Bootstraps/Laravel.php) is `$this->app`, this is probably what you want to use in `postHandle` instead of the `$app` argument. If your implementation works, then we should...
Resetting the container is a drastically performance decreasement which makes php-pm almost useless. Symfony's HttpKernel has a terminate event, which should be used to clean stuff up. However, since PHP...
I don't know what you mean. You need to reset stuff that needs to be resetted in the terminate event.
Yes, if you have the necessary events in your middleware, then you should place the cleanup there.
We should forbid them, not running them.
Can you please try to not use underscore in `phpName=""` attributes?
You can overwrite the connection in the ConnectionManager of each database.
If you have no master-slave, then you can do: ``` php /** @var ConnectionManagerSingle $connectionManager1 */ $connectionManager1 = Propel::getConnectionManager('db-1'); /** @var ConnectionManagerSingle $connectionManager2 */ $connectionManager2 = Propel::getConnectionManager('db-2'); $connection1 = $connectionManager1->getWriteConnection();...
Probably better to push this to https://github.com/propelorm/Propel2
Yeah, because they are the default value.