mirror of
https://github.com/danog/postgres.git
synced 2024-11-27 04:24:45 +01:00
19 lines
281 B
PHP
19 lines
281 B
PHP
<?php
|
|
|
|
namespace Amp\Postgres;
|
|
|
|
use Amp\Struct;
|
|
|
|
class Notification {
|
|
use Struct;
|
|
|
|
/** @var string Channel name. */
|
|
public $channel;
|
|
|
|
/** @var int PID of message source. */
|
|
public $pid;
|
|
|
|
/** @var string Message payload */
|
|
public $payload;
|
|
}
|