Remove pcntl warning for now

This commit is contained in:
Victor Dubiniuk 2016-04-26 21:08:33 +03:00
parent 1087385cae
commit ffe561df62
1 changed files with 0 additions and 4 deletions

View File

@ -79,10 +79,6 @@ try {
exit(1); exit(1);
} }
if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) {
echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL;
}
$application = new Application(\OC::$server->getConfig(), \OC::$server->getEventDispatcher(), \OC::$server->getRequest()); $application = new Application(\OC::$server->getConfig(), \OC::$server->getEventDispatcher(), \OC::$server->getRequest());
$application->loadCommands(new ArgvInput(), new ConsoleOutput()); $application->loadCommands(new ArgvInput(), new ConsoleOutput());
$application->run(); $application->run();