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