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

@@ -532,7 +532,7 @@ class DibiColumnInfo extends DibiObject
public function getType()
{
if (self::$types === NULL) {
self::$types = new DibiLazyStorage(array(__CLASS__, 'detectType'));
self::$types = new DibiHashMap(array(__CLASS__, 'detectType'));
}
return self::$types->{$this->info['nativetype']};
}