mirror of
https://github.com/danog/amp.git
synced 2024-12-14 18:37:30 +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;
|
|
}
|