From aa448424c76f588dda62790317e7b45c94e39f7b Mon Sep 17 00:00:00 2001 From: Ilian Ranguelov Date: Wed, 30 May 2018 13:22:39 +0200 Subject: [PATCH] reflect translation support in readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index bdd54c9..bd9aa5d 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,10 @@ $value = 'any invalid value'; try { $gtin = Gtin\Factory::create($value); } catch (Gtin\NonNormalizable $e) { + // $translatedMessage = $someExternalComponent->translate( + // $e->messageKey(), + // $e->messageData() + // ); // ... }