1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette\Database\Table;
9:
10: use Nette\Database;
11:
12:
13: /**
14: * Container of database result fetched into IRow objects.
15: *
16: * @method IRow|bool fetch() Fetches single row object.
17: * @method IRow[] fetchAll() Fetches all rows.
18: */
19: interface IRowContainer extends Database\IRowContainer
20: {
21: }
22: