Simple Maybe
monad library for PHP
. Makes your life easier by making your code safer and by keeping your code stylish.
Graceful handling of null
values.
Composer:
"require": {
"pirminis/maybe-monad": "~1.2"
},
"autoload": {
"files": ["vendor/pirminis/maybe-monad/lib/global.php"]
}
Dont be a jerk and check example.php
, it is simple and easy to understand:
php example.php
Use phpunit in project folder:
phpunit tests
$how_much_I_care = \Maybe('that much'); echo $how_much_I_care->val('not that much');