PHPDaemon\Servers\HTTP\Pool::onConfigUpdated PHP Method

onConfigUpdated() public method

Called when worker is going to update configuration.
public onConfigUpdated ( ) : void
return void
    public function onConfigUpdated()
    {
        parent::onConfigUpdated();
        if (($order = ini_get('request_order')) || ($order = ini_get('variables_order'))) {
            $this->variablesOrder = $order;
        } else {
            $this->variablesOrder = null;
        }
    }