1: <?php
 2: 
 3: /**
 4:  * This file is part of the Nette Framework (https://nette.org)
 5:  * Copyright (c) 2004 David Grudl (http://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:  * @author     Jan Skrasek
17:  *
18:  * @method     IRow|bool  fetch() Fetches single row object.
19:  * @method     IRow[]     fetchAll() Fetches all rows.
20:  */
21: interface IRowContainer extends Database\IRowContainer
22: {
23: }
24: