1
0
moha/watch.php

12 lines
149 B
PHP
Raw Normal View History

2022-01-30 00:21:50 +01:00
<?php
function watch($topic, $fn, $property, $function)
{
global $monitored;
$monitored[] = new watch($topic, $fn, $property, $function);
}
?>