sigquit() protected method

Called when the signal SIGTERM caught
protected sigquit ( ) : void
return void
Example #1
0
 /**
  * Handler of the SIGQUIT (graceful shutdown) signal in worker process.
  * @return void
  */
 protected function sigquit()
 {
     if (Daemon::$config->logsignals->value) {
         $this->log('caught SIGQUIT.');
     }
     parent::sigquit();
 }