1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-11 08:59:42 +01:00
postgres/src/Notification.php
2018-07-01 12:33:12 -05:00

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;
}