Cakephp: can Model->find('all') return results without model name

Using Model->find('all') returns an array with the following structure:

array(
  0 => array('Model1' => array(/* Model1 fields*/), 'Model2' => array(/* Model2 fields*/), ...),
  1 => array('Model1' => array(/* Model1 fields*/), 'Model2' => array(/* Model2 fields*/), ...),
  ...)

When a single Model is queried (i.e. Recursive = -1), is it possible to have the results returned as an array with the following structure:

array(0 => /* Model1 fields*/, 1 => /* Model1 fields*/, etc...)

I thought I read this somewhere a while back but cannot figure out how to do this or if it is possible.