1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/Notification.php
2016-09-19 11:12:32 -05:00

19 lines
309 B
PHP

<?php declare(strict_types = 1);
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 paypload */
public $payload;
}