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
+5 -5
View File
@@ -8,20 +8,20 @@ $foo->beforeEach = false;
$foo->afterEach = false;
$foo->afterAll = false;
beforeAll(function () use ($foo) {
beforeAll(function () use ($foo): void {
$foo->beforeAll = true;
});
beforeEach(function () use ($foo) {
beforeEach(function () use ($foo): void {
$foo->beforeEach = true;
});
afterEach(function () use ($foo) {
afterEach(function () use ($foo): void {
$foo->afterEach = true;
});
afterAll(function () use ($foo) {
afterAll(function () use ($foo): void {
$foo->afterAll = true;
});
register_shutdown_function(function () use ($foo) {
register_shutdown_function(function () use ($foo): void {
assertFalse($foo->beforeAll);
assertFalse($foo->beforeEach);
assertFalse($foo->afterEach);