first phase of daemon refactoring

This commit is contained in:
redmatrix
2016-05-19 19:42:45 -07:00
parent 6e7d7c5017
commit 5b2474238e
18 changed files with 2122 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php /** @file */
namespace Zotlabs\Daemon;
class Cronhooks {
static public function run($argc,$argv){
logger('cronhooks: start');
$d = datetime_convert();
call_hooks('cron', $d);
return;
}
}