diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-03-29 20:24:16 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-04-03 14:23:54 +0200 |
commit | 305b17e85f3bb4836fd08f22c3a19c386478cdf4 (patch) | |
tree | dd890507687ab62038aad72f88d1bcfaa3614c89 /ext/pdo/pdo.stub.php | |
parent | 17d4e66204466cb5e3c0eb32aa18b8dbd9774ce3 (diff) | |
download | php-git-305b17e85f3bb4836fd08f22c3a19c386478cdf4.tar.gz |
Do not include the same stub multiple times
Closes GH-5322
Diffstat (limited to 'ext/pdo/pdo.stub.php')
-rw-r--r-- | ext/pdo/pdo.stub.php | 130 |
1 files changed, 0 insertions, 130 deletions
diff --git a/ext/pdo/pdo.stub.php b/ext/pdo/pdo.stub.php index 13969edb57..6a6bc27310 100644 --- a/ext/pdo/pdo.stub.php +++ b/ext/pdo/pdo.stub.php @@ -1,133 +1,3 @@ <?php -/* pdo.c */ - function pdo_drivers(): array {} - -/* pdo_dbh.c */ - -class PDO { - public function __construct(string $dsn, ?string $username = null, ?string $passwd = null, ?array $options = null) {} - - /** @return bool */ - public function beginTransaction() {} - - /** @return bool */ - public function commit() {} - - /** @return string|null */ - public function errorCode() {} - - /** @return array */ - public function errorInfo() {} - - /** @return int|false */ - public function exec(string $statement) {} - - /** @return mixed */ - public function getAttribute(int $attribute) {} - - /** @return array */ - public static function getAvailableDrivers() {} - - /** @return bool */ - public function inTransaction() {} - - /** @return string|false */ - public function lastInsertId(?string $name = null) {} - - /** @return PDOStatement|false */ - public function prepare(string $statement, array $driver_options = []) {} - - /** @return PDOStatement|false */ - public function query(string $statement) {} - - /** @return string|false */ - public function quote(string $string, int $parameter_type = PDO::PARAM_STR) {} - - /** @return bool */ - public function rollBack() {} - - /** - * @param mixed $value - * @return bool - */ - public function setAttribute(int $attribute, $value) {} -} - -/* pdo_stmt.c */ - -class PDOStatement implements Traversable { - /** - * @param mixed $driverdata - * @return bool - */ - public function bindColumn(int|string $column, &$param, int $type = 0, int $maxlen = 0, $driverdata = null) {} - - /** - * @param mixed $driver_options - * @return bool - */ - public function bindParam(int|string $parameter, &$param, int $type = PDO::PARAM_STR, int $maxlen = 0, $driverdata = null) {} - - /** - * @param int|string $parameter - * @param mixed $value - * @return bool - */ - public function bindValue($parameter, $value, int $type = PDO::PARAM_STR) {} - - /** @return bool */ - public function closeCursor() {} - - /** @return int|false */ - public function columnCount() {} - - /** @return false|null */ - public function debugDumpParams() {} - - /** @return string|false|null */ - public function errorCode() {} - - /** @return array|false */ - public function errorInfo() {} - - /** @return bool */ - public function execute(?array $input_parameters = null) {} - - /** @return mixed */ - public function fetch(int $fetch_style = PDO::FETCH_BOTH, int $cursor_orientation = PDO::FETCH_ORI_NEXT, int $cursor_offset = 0) {} - - /** - * @param mixed $fetch_argument - * @return array|false - */ - public function fetchAll(int $fetch_style = PDO::FETCH_BOTH, $fetch_argument = UNKNOWN, array $ctor_args = []) {} - - /** @return mixed */ - public function fetchColumn(int $column_number = 0) {} - - /** @return mixed */ - public function fetchObject(?string $class_name = "stdClass", ?array $ctor_args = null) {} - - /** @return mixed */ - public function getAttribute(int $attribute) {} - - /** @return array|false */ - public function getColumnMeta(int $column) {} - - /** @return bool */ - public function nextRowset() {} - - /** @return int|false */ - public function rowCount() {} - - /** - * @param mixed $value - * @return bool - */ - public function setAttribute(int $attribute, $value) {} - - /** @return bool */ - public function setFetchMode(int $mode, $param1 = UNKNOWN, $param2 = UNKNOWN) {} -} |