fix: package lock fingerprint

This commit is contained in:
nuno maduro
2026-07-18 01:10:01 +01:00
parent 9e79e491e2
commit 820fa08313
237 changed files with 2409 additions and 2100 deletions
+6 -12
View File
@@ -1,19 +1,13 @@
<?php
declare(strict_types=1);
dataset('bound.closure', function () {
yield function () {
return 1;
};
yield function () {
return 2;
};
yield fn (): int => 1;
yield fn (): int => 2;
});
dataset('bound.array', [
function () {
return 1;
},
function () {
return 2;
},
fn (): int => 1,
fn (): int => 2,
]);
+2
View File
@@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
dataset('numbers.closure', function () {
yield [1];
yield [2];