lstrojny / functional-php

Primitives for functional programming in PHP
MIT License
1.98k stars 204 forks source link

Functional\match() to Functional\matching() #224

Closed lstrojny closed 4 years ago

lstrojny commented 4 years ago

match is a reserved keyword in PHP 8 to make room for https://wiki.php.net/rfc/match_expression_v2

Replace Functional\match() with Functional\matching() and provide backwards compatibility alias for PHP <8.0.0 that triggers a warning.

Fixes #223