Skip to content

Commit

Permalink
Run static analysis with PHP 8.3 (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanmai committed Feb 16, 2024
1 parent 0aaf714 commit 4f05915
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -68,7 +68,7 @@ jobs:
runs-on: ubuntu-latest

env:
PHP_VERSION: '8.2'
PHP_VERSION: '8.3'
COMPOSER_ROOT_VERSION: v5.99

steps:
Expand Down
2 changes: 1 addition & 1 deletion src/functions.php
Expand Up @@ -23,7 +23,7 @@ function map(callable $func = null): Standard
{
$pipeline = new Standard();

if (!$func) {
if (null === $func) {
return $pipeline;
}

Expand Down

0 comments on commit 4f05915

Please sign in to comment.