├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── UPGRADE-3.0.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Boolean │ ├── BoolLiteral.php │ └── BooleanString.php ├── Climate │ ├── Celsius.php │ ├── Fahrenheit.php │ ├── Kelvin.php │ ├── RelativeHumidity.php │ └── Temperature.php ├── DateTime │ ├── Date.php │ ├── DateTime.php │ ├── DateTimeWithTimeZone.php │ ├── Exception │ │ ├── InvalidDateException.php │ │ └── InvalidTimeZoneException.php │ ├── Hour.php │ ├── Minute.php │ ├── Month.php │ ├── MonthDay.php │ ├── Second.php │ ├── Time.php │ ├── TimeZone.php │ ├── WeekDay.php │ └── Year.php ├── Enum │ └── Enum.php ├── Exception │ └── InvalidNativeArgumentException.php ├── Geography │ ├── Address.php │ ├── Continent.php │ ├── Coordinate.php │ ├── Country.php │ ├── CountryCode.php │ ├── CountryCodeName.php │ ├── DistanceFormula.php │ ├── DistanceUnit.php │ ├── Ellipsoid.php │ ├── Latitude.php │ ├── Longitude.php │ └── Street.php ├── Identity │ ├── MacAddress.php │ └── UUID.php ├── Money │ ├── Currency.php │ ├── CurrencyCode.php │ └── Money.php ├── NullValue │ └── NullValue.php ├── Number │ ├── Complex.php │ ├── Integer.php │ ├── Natural.php │ ├── NumberInterface.php │ ├── Real.php │ └── RoundingMode.php ├── Person │ ├── Age.php │ ├── Gender.php │ └── Name.php ├── StringLiteral │ └── StringLiteral.php ├── Structure │ ├── Collection.php │ ├── Dictionary.php │ └── KeyValuePair.php ├── Util │ └── Util.php ├── ValueObjectInterface.php └── Web │ ├── Domain.php │ ├── EmailAddress.php │ ├── FragmentIdentifier.php │ ├── FragmentIdentifierInterface.php │ ├── Hostname.php │ ├── IPAddress.php │ ├── IPAddressVersion.php │ ├── IPv4Address.php │ ├── IPv6Address.php │ ├── NullFragmentIdentifier.php │ ├── NullPortNumber.php │ ├── NullQueryString.php │ ├── Path.php │ ├── PortNumber.php │ ├── PortNumberInterface.php │ ├── QueryString.php │ ├── QueryStringInterface.php │ ├── SchemeName.php │ └── Url.php └── tests ├── Boolean ├── BoolLiteralTest.php ├── BooleanStringTest.php └── BooleanTestCase.php ├── Climate ├── CelsiusTest.php ├── FahrenheitTest.php ├── KelvinTest.php └── RelativeHumidityTest.php ├── DateTime ├── DateTest.php ├── DateTimeTest.php ├── DateTimeWithTimeZoneTest.php ├── HourTest.php ├── MinuteTest.php ├── MonthDayTest.php ├── MonthTest.php ├── SecondTest.php ├── TimeTest.php ├── TimeZoneTest.php ├── WeekDayTest.php └── YearTest.php ├── Enum └── EnumTest.php ├── Geography ├── AddressTest.php ├── CoordinateTest.php ├── CountryCodeNameTest.php ├── CountryTest.php ├── LatitudeTest.php ├── LongitudeTest.php └── StreetTest.php ├── Identity ├── MacAddressTest.php └── UUIDTest.php ├── Money ├── CurrencyTest.php └── MoneyTest.php ├── NullValue └── NullValueTest.php ├── Number ├── ComplexTest.php ├── IntegerTest.php ├── NaturalTest.php └── RealTest.php ├── Person ├── AgeTest.php ├── GenderTest.php └── NameTest.php ├── StringLiteral └── StringLiteralTest.php ├── Structure ├── CollectionTest.php ├── DictionaryTest.php └── KeyValuePairTest.php ├── TestCase.php ├── Util └── UtilTest.php └── Web ├── DomainTest.php ├── EmailAddressTest.php ├── FragmentIdentifierTest.php ├── HostnameTest.php ├── IPAddressTest.php ├── IPv4AddressTest.php ├── IPv6AddressTest.php ├── PathTest.php ├── PortNumberTest.php ├── QueryStringTest.php ├── SchemeNameTest.php └── UrlTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /composer.lock 3 | /phpunit.xml 4 | /vendor/ 5 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/UPGRADE-3.0.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Boolean/BoolLiteral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Boolean/BoolLiteral.php -------------------------------------------------------------------------------- /src/Boolean/BooleanString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Boolean/BooleanString.php -------------------------------------------------------------------------------- /src/Climate/Celsius.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Climate/Celsius.php -------------------------------------------------------------------------------- /src/Climate/Fahrenheit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Climate/Fahrenheit.php -------------------------------------------------------------------------------- /src/Climate/Kelvin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Climate/Kelvin.php -------------------------------------------------------------------------------- /src/Climate/RelativeHumidity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Climate/RelativeHumidity.php -------------------------------------------------------------------------------- /src/Climate/Temperature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Climate/Temperature.php -------------------------------------------------------------------------------- /src/DateTime/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/Date.php -------------------------------------------------------------------------------- /src/DateTime/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/DateTime.php -------------------------------------------------------------------------------- /src/DateTime/DateTimeWithTimeZone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/DateTimeWithTimeZone.php -------------------------------------------------------------------------------- /src/DateTime/Exception/InvalidDateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/Exception/InvalidDateException.php -------------------------------------------------------------------------------- /src/DateTime/Exception/InvalidTimeZoneException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/Exception/InvalidTimeZoneException.php -------------------------------------------------------------------------------- /src/DateTime/Hour.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/Hour.php -------------------------------------------------------------------------------- /src/DateTime/Minute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/Minute.php -------------------------------------------------------------------------------- /src/DateTime/Month.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/Month.php -------------------------------------------------------------------------------- /src/DateTime/MonthDay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/MonthDay.php -------------------------------------------------------------------------------- /src/DateTime/Second.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/Second.php -------------------------------------------------------------------------------- /src/DateTime/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/Time.php -------------------------------------------------------------------------------- /src/DateTime/TimeZone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/TimeZone.php -------------------------------------------------------------------------------- /src/DateTime/WeekDay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/WeekDay.php -------------------------------------------------------------------------------- /src/DateTime/Year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/DateTime/Year.php -------------------------------------------------------------------------------- /src/Enum/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Enum/Enum.php -------------------------------------------------------------------------------- /src/Exception/InvalidNativeArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Exception/InvalidNativeArgumentException.php -------------------------------------------------------------------------------- /src/Geography/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/Address.php -------------------------------------------------------------------------------- /src/Geography/Continent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/Continent.php -------------------------------------------------------------------------------- /src/Geography/Coordinate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/Coordinate.php -------------------------------------------------------------------------------- /src/Geography/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/Country.php -------------------------------------------------------------------------------- /src/Geography/CountryCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/CountryCode.php -------------------------------------------------------------------------------- /src/Geography/CountryCodeName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/CountryCodeName.php -------------------------------------------------------------------------------- /src/Geography/DistanceFormula.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/DistanceFormula.php -------------------------------------------------------------------------------- /src/Geography/DistanceUnit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/DistanceUnit.php -------------------------------------------------------------------------------- /src/Geography/Ellipsoid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/Ellipsoid.php -------------------------------------------------------------------------------- /src/Geography/Latitude.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/Latitude.php -------------------------------------------------------------------------------- /src/Geography/Longitude.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/Longitude.php -------------------------------------------------------------------------------- /src/Geography/Street.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Geography/Street.php -------------------------------------------------------------------------------- /src/Identity/MacAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Identity/MacAddress.php -------------------------------------------------------------------------------- /src/Identity/UUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Identity/UUID.php -------------------------------------------------------------------------------- /src/Money/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Money/Currency.php -------------------------------------------------------------------------------- /src/Money/CurrencyCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Money/CurrencyCode.php -------------------------------------------------------------------------------- /src/Money/Money.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Money/Money.php -------------------------------------------------------------------------------- /src/NullValue/NullValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/NullValue/NullValue.php -------------------------------------------------------------------------------- /src/Number/Complex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Number/Complex.php -------------------------------------------------------------------------------- /src/Number/Integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Number/Integer.php -------------------------------------------------------------------------------- /src/Number/Natural.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Number/Natural.php -------------------------------------------------------------------------------- /src/Number/NumberInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Number/NumberInterface.php -------------------------------------------------------------------------------- /src/Number/Real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Number/Real.php -------------------------------------------------------------------------------- /src/Number/RoundingMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Number/RoundingMode.php -------------------------------------------------------------------------------- /src/Person/Age.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Person/Age.php -------------------------------------------------------------------------------- /src/Person/Gender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Person/Gender.php -------------------------------------------------------------------------------- /src/Person/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Person/Name.php -------------------------------------------------------------------------------- /src/StringLiteral/StringLiteral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/StringLiteral/StringLiteral.php -------------------------------------------------------------------------------- /src/Structure/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Structure/Collection.php -------------------------------------------------------------------------------- /src/Structure/Dictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Structure/Dictionary.php -------------------------------------------------------------------------------- /src/Structure/KeyValuePair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Structure/KeyValuePair.php -------------------------------------------------------------------------------- /src/Util/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Util/Util.php -------------------------------------------------------------------------------- /src/ValueObjectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/ValueObjectInterface.php -------------------------------------------------------------------------------- /src/Web/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/Domain.php -------------------------------------------------------------------------------- /src/Web/EmailAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/EmailAddress.php -------------------------------------------------------------------------------- /src/Web/FragmentIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/FragmentIdentifier.php -------------------------------------------------------------------------------- /src/Web/FragmentIdentifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/FragmentIdentifierInterface.php -------------------------------------------------------------------------------- /src/Web/Hostname.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/Hostname.php -------------------------------------------------------------------------------- /src/Web/IPAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/IPAddress.php -------------------------------------------------------------------------------- /src/Web/IPAddressVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/IPAddressVersion.php -------------------------------------------------------------------------------- /src/Web/IPv4Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/IPv4Address.php -------------------------------------------------------------------------------- /src/Web/IPv6Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/IPv6Address.php -------------------------------------------------------------------------------- /src/Web/NullFragmentIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/NullFragmentIdentifier.php -------------------------------------------------------------------------------- /src/Web/NullPortNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/NullPortNumber.php -------------------------------------------------------------------------------- /src/Web/NullQueryString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/NullQueryString.php -------------------------------------------------------------------------------- /src/Web/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/Path.php -------------------------------------------------------------------------------- /src/Web/PortNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/PortNumber.php -------------------------------------------------------------------------------- /src/Web/PortNumberInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/PortNumberInterface.php -------------------------------------------------------------------------------- /src/Web/QueryString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/QueryString.php -------------------------------------------------------------------------------- /src/Web/QueryStringInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/QueryStringInterface.php -------------------------------------------------------------------------------- /src/Web/SchemeName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/SchemeName.php -------------------------------------------------------------------------------- /src/Web/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/src/Web/Url.php -------------------------------------------------------------------------------- /tests/Boolean/BoolLiteralTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Boolean/BoolLiteralTest.php -------------------------------------------------------------------------------- /tests/Boolean/BooleanStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Boolean/BooleanStringTest.php -------------------------------------------------------------------------------- /tests/Boolean/BooleanTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Boolean/BooleanTestCase.php -------------------------------------------------------------------------------- /tests/Climate/CelsiusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Climate/CelsiusTest.php -------------------------------------------------------------------------------- /tests/Climate/FahrenheitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Climate/FahrenheitTest.php -------------------------------------------------------------------------------- /tests/Climate/KelvinTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Climate/KelvinTest.php -------------------------------------------------------------------------------- /tests/Climate/RelativeHumidityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Climate/RelativeHumidityTest.php -------------------------------------------------------------------------------- /tests/DateTime/DateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/DateTest.php -------------------------------------------------------------------------------- /tests/DateTime/DateTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/DateTimeTest.php -------------------------------------------------------------------------------- /tests/DateTime/DateTimeWithTimeZoneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/DateTimeWithTimeZoneTest.php -------------------------------------------------------------------------------- /tests/DateTime/HourTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/HourTest.php -------------------------------------------------------------------------------- /tests/DateTime/MinuteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/MinuteTest.php -------------------------------------------------------------------------------- /tests/DateTime/MonthDayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/MonthDayTest.php -------------------------------------------------------------------------------- /tests/DateTime/MonthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/MonthTest.php -------------------------------------------------------------------------------- /tests/DateTime/SecondTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/SecondTest.php -------------------------------------------------------------------------------- /tests/DateTime/TimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/TimeTest.php -------------------------------------------------------------------------------- /tests/DateTime/TimeZoneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/TimeZoneTest.php -------------------------------------------------------------------------------- /tests/DateTime/WeekDayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/WeekDayTest.php -------------------------------------------------------------------------------- /tests/DateTime/YearTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/DateTime/YearTest.php -------------------------------------------------------------------------------- /tests/Enum/EnumTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Enum/EnumTest.php -------------------------------------------------------------------------------- /tests/Geography/AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Geography/AddressTest.php -------------------------------------------------------------------------------- /tests/Geography/CoordinateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Geography/CoordinateTest.php -------------------------------------------------------------------------------- /tests/Geography/CountryCodeNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Geography/CountryCodeNameTest.php -------------------------------------------------------------------------------- /tests/Geography/CountryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Geography/CountryTest.php -------------------------------------------------------------------------------- /tests/Geography/LatitudeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Geography/LatitudeTest.php -------------------------------------------------------------------------------- /tests/Geography/LongitudeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Geography/LongitudeTest.php -------------------------------------------------------------------------------- /tests/Geography/StreetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Geography/StreetTest.php -------------------------------------------------------------------------------- /tests/Identity/MacAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Identity/MacAddressTest.php -------------------------------------------------------------------------------- /tests/Identity/UUIDTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Identity/UUIDTest.php -------------------------------------------------------------------------------- /tests/Money/CurrencyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Money/CurrencyTest.php -------------------------------------------------------------------------------- /tests/Money/MoneyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Money/MoneyTest.php -------------------------------------------------------------------------------- /tests/NullValue/NullValueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/NullValue/NullValueTest.php -------------------------------------------------------------------------------- /tests/Number/ComplexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Number/ComplexTest.php -------------------------------------------------------------------------------- /tests/Number/IntegerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Number/IntegerTest.php -------------------------------------------------------------------------------- /tests/Number/NaturalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Number/NaturalTest.php -------------------------------------------------------------------------------- /tests/Number/RealTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Number/RealTest.php -------------------------------------------------------------------------------- /tests/Person/AgeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Person/AgeTest.php -------------------------------------------------------------------------------- /tests/Person/GenderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Person/GenderTest.php -------------------------------------------------------------------------------- /tests/Person/NameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Person/NameTest.php -------------------------------------------------------------------------------- /tests/StringLiteral/StringLiteralTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/StringLiteral/StringLiteralTest.php -------------------------------------------------------------------------------- /tests/Structure/CollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Structure/CollectionTest.php -------------------------------------------------------------------------------- /tests/Structure/DictionaryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Structure/DictionaryTest.php -------------------------------------------------------------------------------- /tests/Structure/KeyValuePairTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Structure/KeyValuePairTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Util/UtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Util/UtilTest.php -------------------------------------------------------------------------------- /tests/Web/DomainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/DomainTest.php -------------------------------------------------------------------------------- /tests/Web/EmailAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/EmailAddressTest.php -------------------------------------------------------------------------------- /tests/Web/FragmentIdentifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/FragmentIdentifierTest.php -------------------------------------------------------------------------------- /tests/Web/HostnameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/HostnameTest.php -------------------------------------------------------------------------------- /tests/Web/IPAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/IPAddressTest.php -------------------------------------------------------------------------------- /tests/Web/IPv4AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/IPv4AddressTest.php -------------------------------------------------------------------------------- /tests/Web/IPv6AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/IPv6AddressTest.php -------------------------------------------------------------------------------- /tests/Web/PathTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/PathTest.php -------------------------------------------------------------------------------- /tests/Web/PortNumberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/PortNumberTest.php -------------------------------------------------------------------------------- /tests/Web/QueryStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/QueryStringTest.php -------------------------------------------------------------------------------- /tests/Web/SchemeNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/SchemeNameTest.php -------------------------------------------------------------------------------- /tests/Web/UrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cultuurnet/valueobjects/HEAD/tests/Web/UrlTest.php --------------------------------------------------------------------------------