mirror of
https://github.com/flarum/framework.git
synced 2025-01-21 14:14:59 +08:00
AbstractServer: Store app instance as class property
This will make it easier to reuse the instance in an asynchronous setting (e.g. ReactPHP), where one application instance is preloaded and reused for each incoming request.
This commit is contained in:
parent
120821efcd
commit
04aef5814e
|
@ -17,6 +17,11 @@ use Monolog\Logger;
|
|||
|
||||
abstract class AbstractServer
|
||||
{
|
||||
/**
|
||||
* @var Application
|
||||
*/
|
||||
protected $app;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
|
@ -41,6 +46,8 @@ abstract class AbstractServer
|
|||
if (file_exists($file = $this->path.'/config.php')) {
|
||||
$this->config = include $file;
|
||||
}
|
||||
|
||||
$this->app = $this->getApp();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -22,12 +22,10 @@ abstract class AbstractServer extends BaseAbstractServer
|
|||
{
|
||||
public function listen()
|
||||
{
|
||||
$app = $this->getApp();
|
||||
|
||||
$this->collectGarbage($app);
|
||||
$this->collectGarbage($this->app);
|
||||
|
||||
$server = Server::createServer(
|
||||
$this->getMiddleware($app),
|
||||
$this->getMiddleware($this->app),
|
||||
$_SERVER,
|
||||
$_GET,
|
||||
$_POST,
|
||||
|
|
Loading…
Reference in New Issue
Block a user