1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-11 16:44:30 +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

@@ -49,7 +49,7 @@ final class DibiTranslator extends DibiObject
/** @var int */
private $offset;
/** @var DibiLazyStorage */
/** @var DibiHashMap */
private $identifiers;
@@ -69,7 +69,7 @@ final class DibiTranslator extends DibiObject
*/
public function translate(array $args)
{
$this->identifiers = new DibiLazyStorage(array($this, 'delimite'));
$this->identifiers = new DibiHashMap(array($this, 'delimite'));
$this->driver = $this->connection->getDriver();
$args = array_values($args);