mirror of
https://github.com/danog/amp.git
synced 2024-12-15 02:47:30 +01:00
14 lines
188 B
PHP
14 lines
188 B
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
class UvIoWatcher {
|
|
public $id;
|
|
public $uvStruct;
|
|
public $callback;
|
|
public $stream;
|
|
public $pollFlag;
|
|
public $mode;
|
|
public $isEnabled;
|
|
}
|