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
+3 -3
View File
@@ -3,16 +3,16 @@
$foo = new stdClass;
$foo->bar = 0;
beforeAll(function () use ($foo) {
beforeAll(function () use ($foo): void {
$foo->bar++;
});
it('gets executed before tests', function () use ($foo) {
it('gets executed before tests', function () use ($foo): void {
expect($foo)->bar->toBe(1);
$foo->bar = 'changed';
});
it('do not get executed before each test', function () use ($foo) {
it('do not get executed before each test', function () use ($foo): void {
expect($foo)->bar->toBe('changed');
});