| 1 | <?php |
||
| 32 | abstract class AbstractMap extends AbstractCollection implements MapInterface |
||
| 33 | { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * This method returns the internal array |
||
| 37 | * with the keys and the related values. |
||
| 38 | * |
||
| 39 | * @return array Holds the array with keys and values |
||
| 40 | * @see \AppserverIo\Collections\Map::toIndexedArray() |
||
| 41 | */ |
||
| 42 | public function toIndexedArray() |
||
| 46 | } |
||
| 47 |