Ein Beispiel, wie schön gut durchdachte fluent interfaces sind:

$countryName = $this->container->get( 'doctrine' )->getManager()
    ->getRepository( 'SomevendorModelDbBundle:CountryLocale' )
    ->getByCountryIdAndLocale(
        $countryId,
        $this->container->get( 'request' )->getLocale() )
    ->getName();