funeralzone / valueobjects

A PHP 7 value objects helper library.
MIT License
66 stars 8 forks source link

Quick null nullables #7

Closed chrisharrison closed 6 years ago

chrisharrison commented 6 years ago

Added a helper function to nullable to quickly create null backed nullables.

We've found ourselves doing the following rather frequently: $null = Nullable::fromNative(null);

Just to be (slightly) quicker, but also to better show intent, this PR introduces the following shorthand: $null = Nullable::null();