Skip to content

Commit 9a4ec7e

Browse files
committed
adding missing import
1 parent b139489 commit 9a4ec7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Select.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
use Atlas\Statement\Select as SelectStatement;
1414
use BadMethodCallException;
1515
use Generator;
16+
use PDO;
1617

1718
/**
1819
* @method array|false fetchAll()
1920
* @method int fetchAffected()
2021
* @method array|false fetchColumn(int $column = 0)
21-
* @method array|false fetchGroup(int $style = 7) // 7 = PDO::FETCH_COLUMN
22+
* @method array|false fetchGroup(int $style = PDO::FETCH_COLUMN)
2223
* @method array|false fetchKeyPair()
2324
* @method object|false fetchObject(string $class = 'stdClass', array $args = [])
2425
* @method array|false fetchObjects(string $class = 'stdClass', array $args = [])

0 commit comments

Comments
 (0)