an ORM, as the name implies, creates objects, not arrays. In this case, an array of objects, since find('all') returns multiple results.
You can call to_array() on an ORM object without problems, but you can't have the ORM return the result as an array, it's not designed to be a query builder.