mirror of
https://github.com/danog/amp.git
synced 2024-11-27 12:35:02 +01:00
17 lines
290 B
PHP
Executable File
17 lines
290 B
PHP
Executable File
<?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;
|
|
}
|