Psalm
Get started
Documentation
Plugins
Articles
GitHub
<?php /** * @psalm-param callable(int, int): ?bool $max */ function highOrderedFunction(callable $max): ?bool { return $max(3, 2); } highOrderedFunction(function (int $_left, int $_right): ?bool { return null; });
Snippet created on December 14 2021 at 05:45 UTC
Settings
Get link