mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-08 16:02:40 +01:00
12 lines
217 B
PHP
12 lines
217 B
PHP
|
<?php
|
||
|
|
||
|
// Initialize a script that will handle signals.
|
||
|
|
||
|
if (function_exists('pcntl_async_signals')) {
|
||
|
pcntl_async_signals(true);
|
||
|
} else {
|
||
|
declare(ticks = 1);
|
||
|
}
|
||
|
|
||
|
require_once dirname(__FILE__).'/init-script.php';
|