all() public method

Executes query and returns all results as an array.
public all ( Connection $db = null ) : array | ActiveRecord
$db Connection the Mongo connection used to execute the query. If null, the Mongo connection returned by [[modelClass]] will be used.
return array | ActiveRecord the query results. If the query results in nothing, an empty array will be returned.
 /**
  * @inheritdoc
  * @return Proxy[]|array
  */
 public function all($db = null)
 {
     return parent::all($db);
 }