select()->order('ordre ASC'); $result = $this->fetchAll($sql); return $result; } public function getStatutByTypeCommande($type) { $sql = $this->select() ->where('typeCommande = ?', $type) ->order('ordre ASC'); $result = $this->fetchAll($sql); return $result; } }