├── COPYING ├── README.md └── src ├── DataValues ├── MonolingualTextValue.php └── MultilingualTextValue.php ├── ValueFormatters ├── Exceptions │ └── MismatchingDataValueTypeException.php └── StringFormatter.php └── ValueParsers ├── BoolParser.php ├── DispatchingValueParser.php ├── FloatParser.php ├── IntParser.php ├── Normalizers ├── NullStringNormalizer.php ├── StringNormalizer.php └── TrimmingStringNormalizer.php ├── NullParser.php ├── StringParser.php └── StringValueParser.php /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/README.md -------------------------------------------------------------------------------- /src/DataValues/MonolingualTextValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/DataValues/MonolingualTextValue.php -------------------------------------------------------------------------------- /src/DataValues/MultilingualTextValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/DataValues/MultilingualTextValue.php -------------------------------------------------------------------------------- /src/ValueFormatters/Exceptions/MismatchingDataValueTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueFormatters/Exceptions/MismatchingDataValueTypeException.php -------------------------------------------------------------------------------- /src/ValueFormatters/StringFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueFormatters/StringFormatter.php -------------------------------------------------------------------------------- /src/ValueParsers/BoolParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueParsers/BoolParser.php -------------------------------------------------------------------------------- /src/ValueParsers/DispatchingValueParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueParsers/DispatchingValueParser.php -------------------------------------------------------------------------------- /src/ValueParsers/FloatParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueParsers/FloatParser.php -------------------------------------------------------------------------------- /src/ValueParsers/IntParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueParsers/IntParser.php -------------------------------------------------------------------------------- /src/ValueParsers/Normalizers/NullStringNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueParsers/Normalizers/NullStringNormalizer.php -------------------------------------------------------------------------------- /src/ValueParsers/Normalizers/StringNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueParsers/Normalizers/StringNormalizer.php -------------------------------------------------------------------------------- /src/ValueParsers/Normalizers/TrimmingStringNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueParsers/Normalizers/TrimmingStringNormalizer.php -------------------------------------------------------------------------------- /src/ValueParsers/NullParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueParsers/NullParser.php -------------------------------------------------------------------------------- /src/ValueParsers/StringParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueParsers/StringParser.php -------------------------------------------------------------------------------- /src/ValueParsers/StringValueParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataValues/Common/HEAD/src/ValueParsers/StringValueParser.php --------------------------------------------------------------------------------