mirror of
https://github.com/danog/postgres.git
synced 2024-12-04 02:17:44 +01:00
16 lines
201 B
PHP
16 lines
201 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp\Postgres\Internal;
|
||
|
|
||
|
use Amp\Struct;
|
||
|
|
||
|
class StatementStorage {
|
||
|
use Struct;
|
||
|
|
||
|
/** @var \Amp\Promise|null */
|
||
|
public $promise;
|
||
|
|
||
|
/** @var int */
|
||
|
public $count = 1;
|
||
|
}
|