mirror of
https://github.com/danog/amp.git
synced 2024-12-15 10:57:19 +01:00
17 lines
290 B
PHP
17 lines
290 B
PHP
|
<?php
|
||
|
|
||
|
namespace Alert;
|
||
|
|
||
|
class LibeventWatcher {
|
||
|
public $id;
|
||
|
public $type;
|
||
|
public $eventResource;
|
||
|
public $stream;
|
||
|
public $streamFlags;
|
||
|
public $callback;
|
||
|
public $wrapper;
|
||
|
public $interval = -1;
|
||
|
public $isEnabled = TRUE;
|
||
|
public $isRepeating = FALSE;
|
||
|
}
|