Added __invoke() to SignalTrap and fixed phpunit xml

This commit is contained in:
2020-06-06 23:00:48 +02:00
parent e8c4a85486
commit c855f92ecd
3 changed files with 16 additions and 4 deletions

View File

@ -9,8 +9,15 @@ use NoccyLabs\Ipc\Signal\SignalTrap;
$trap = new SignalTrap(SIGINT);
echo "Press ctrl-c...\n";
while (!$trap->isTrapped()) {
while (!$trap->isTrapped(true)) {
usleep(10000);
}
echo "Thanks!\n";
echo "Thanks!\n";
echo "And once more...\n";
while (!$trap(true)) {
usleep(10000);
}
echo "Thanks!\n";