1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/stubs/pdo.php

14 lines
315 B
PHP
Raw Permalink Normal View History

<?php
class PdoStatement implements Traversable {
/**
* @psalm-taint-sink callable $class
*
* @template T
* @param class-string<T> $class
* @param array $ctorArgs
* @return false|T
*/
public function fetchObject($class = \stdclass::class, array $ctorArgs = array()) {}
}