1: <?php
 2: 
 3: namespace webfilesframework\core\datastore\types\database\resultHandler;
 4: 
 5: 
 6: interface MIResultHandler
 7: {
 8: 
 9:     /**
10:      * @return int
11:      */
12:     public function getResultSize();
13: 
14:     /**
15:      * @return object|\stdClass
16:      */
17:     public function fetchNextResultObject();
18: 
19: }