mirror of
https://github.com/danog/amp.git
synced 2024-12-14 10:27:58 +01:00
14 lines
214 B
PHP
Executable File
14 lines
214 B
PHP
Executable File
<?php
|
|
|
|
namespace Alert;
|
|
|
|
class LibeventWatcher {
|
|
public $id;
|
|
public $eventResource;
|
|
public $stream;
|
|
public $callback;
|
|
public $wrapper;
|
|
public $interval = -1;
|
|
public $isEnabled = TRUE;
|
|
}
|