mirror of
https://github.com/danog/postgres.git
synced 2024-12-13 09:57:32 +01:00
9 lines
148 B
PHP
9 lines
148 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp\Postgres\Internal;
|
||
|
|
||
|
class PqStatementStorage extends StatementStorage {
|
||
|
/** @var \pq\Statement */
|
||
|
public $statement;
|
||
|
}
|