mirror of
https://github.com/danog/amp.git
synced 2024-12-15 10:57:19 +01:00
13 lines
173 B
PHP
13 lines
173 B
PHP
|
<?php
|
||
|
|
||
|
namespace Alert;
|
||
|
|
||
|
class UvTimerWatcher {
|
||
|
public $id;
|
||
|
public $uvStruct;
|
||
|
public $callback;
|
||
|
public $msDelay;
|
||
|
public $msInterval;
|
||
|
public $mode;
|
||
|
}
|