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