Deja como te comente, regresa la variable $clientes y para imprimir solo cicla esa variable:
Código PHP:
Ver original<?php
$clientes = $ClienteSvc->pasajeDatos();
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<?php
foreach ($clientes as $cliente){
echo $cliente->getNombre();
}
?>
</body>
</html>
Saludos.