Skip to content

Commit

Permalink
Merge pull request #235 from phanan-forks/fix-typo
Browse files Browse the repository at this point in the history
fix: typo in match() deprecation message
  • Loading branch information
phanan authored Dec 22, 2020
2 parents 5b78132 + c541a9d commit 0794082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Functional/Matching.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function matching(array $conditions)
namespace Functional;
function match(array $conditions) {
trigger_error('Functional\match() is will be unavailable with PHP 8. Use Functional\matching() instead', E_USER_DEPRECATED);
trigger_error('Functional\match() will be unavailable with PHP 8. Use Functional\matching() instead', E_USER_DEPRECATED);
return matching($conditions);
}
ALIAS
Expand Down

0 comments on commit 0794082

Please sign in to comment.