diff --git a/manual/new/docs/en/dql-doctrine-query-language/map-keyword.txt b/manual/new/docs/en/dql-doctrine-query-language/map-keyword.txt index b0a70c18d..22424ae1b 100644 --- a/manual/new/docs/en/dql-doctrine-query-language/map-keyword.txt +++ b/manual/new/docs/en/dql-doctrine-query-language/map-keyword.txt @@ -1,4 +1,4 @@ -++ MAP keyword ++++ MAP keyword The MAP keyword offers a way of mapping certain columns as collection / array keys. By default Doctrine maps multiple elements to numerically indexed arrays / collections. The mapping starts from zero. In order to override this behaviour you need to use MAP keyword as shown above: @@ -26,7 +26,7 @@ $users = $q->execute(); Now lets print out the drinkers club's creation date. - + print $users['jack daniels']->Group['drinkers club']->createdAt;