| 1 | <?php |
||
| 8 | class MultiResultSet extends MultiResultSetBase |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Connection |
||
| 12 | */ |
||
| 13 | public $connection; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param MultiResultSetAdapter $adapter |
||
| 17 | * @param Connection $connection |
||
| 18 | */ |
||
| 19 | public function __construct(MultiResultSetAdapter $adapter, Connection $connection) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param Connection $connection |
||
| 27 | * @return MultiResultSet |
||
| 28 | */ |
||
| 29 | public static function make(Connection $connection) |
||
| 34 | } |
||
| 35 |