1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-08 23:26:49 +02:00

IDibiDriver splitted into IDibiDriver & IDibiResultDriver

This commit is contained in:
David Grudl
2010-08-04 15:27:41 +02:00
parent 5cce595518
commit de85d3814e
14 changed files with 49 additions and 57 deletions

View File

@@ -349,7 +349,7 @@ class DibiTableInfo extends DibiObject
*/
class DibiResultInfo extends DibiObject
{
/** @var IDibiReflector */
/** @var IDibiResultDriver */
private $driver;
/** @var array */
@@ -360,7 +360,7 @@ class DibiResultInfo extends DibiObject
public function __construct(IDibiReflector $driver)
public function __construct(IDibiResultDriver $driver)
{
$this->driver = $driver;
}