Skip to content

Commit

Permalink
~fix DocblockTypeContradiction
Browse files Browse the repository at this point in the history
  • Loading branch information
alecrabbit committed Sep 21, 2023
1 parent bd94bb0 commit 7cf2c99
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .tools/.report/.psalm/report.txt
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
/app/src/bootstrap.php:26:17:warning - DocblockTypeContradiction: false|string does not contain true
2 changes: 1 addition & 1 deletion src/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function ffiEnabled(): bool
{
return
match (getenv('USE_FFI')) {
'1', 'true', 'yes', 'on', true => true,
'1', 'true', 'yes', 'on' => true,
default => false,
};
}
Expand Down

0 comments on commit 7cf2c99

Please sign in to comment.