From f3b8c2e84960988d47494e7808b1573ec482594a Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Sun, 26 Nov 2023 19:51:04 +0100 Subject: [PATCH] Note about enums --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dccdec2..08790ab 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,8 @@ itself a port of [Google's libphonenumber](https://github.com/googlei18n/libphon It provides an equivalent functionality, with the following implementation differences: - `PhoneNumber` is an immutable class; it can be safely passed around without having to worry about the risk for it to be changed; -- `PhoneNumber` is not just a mere data container, but provides all the methods to parse, format and validate phone numbers; it transparently encapsulates `PhoneNumberUtil`. +- `PhoneNumber` is not just a mere data container, but provides all the methods to parse, format and validate phone numbers; it transparently encapsulates `PhoneNumberUtil`; +- `PhoneNumberFormat` and `PhoneNumberType` are native PHP enums. ## Installation