1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/Notification.php
Aaron Piotrowski 478835a486 Typos
2017-02-16 16:25:52 -06:00

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