1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-11 08:34:59 +02:00

renamed DibiLazyStorage to DibiHashMap

This commit is contained in:
David Grudl
2011-01-25 18:00:29 +01:00
parent 1ada6fab97
commit 9c52b8ea9d
6 changed files with 12 additions and 12 deletions

View File

@@ -94,7 +94,7 @@ class DibiFluent extends DibiObject implements IDataSource
/** @var array */
private $cursor;
/** @var DibiLazyStorage normalized clauses */
/** @var DibiHashMap normalized clauses */
private static $normalizer;
@@ -107,7 +107,7 @@ class DibiFluent extends DibiObject implements IDataSource
$this->connection = $connection;
if (self::$normalizer === NULL) {
self::$normalizer = new DibiLazyStorage(array(__CLASS__, '_formatClause'));
self::$normalizer = new DibiHashMap(array(__CLASS__, '_formatClause'));
}
}