streams/Code/Daemon/Delxitems.php
2022-02-15 20:08:28 -08:00

25 lines
345 B
PHP

<?php
namespace Code\Daemon;
/*
* Daemon to remove 'item' resources in the background from a removed connection
*/
class Delxitems
{
public static function run($argc, $argv)
{
cli_startup();
if ($argc != 3) {
return;
}
remove_abook_items($argv[1], $argv[2]);
return;
}
}