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
@@ -1,13 +1,13 @@
<?php
it('is a test', function () {
it('is a test', function (): void {
expect(['key' => 'foo'])->toHaveKey('key')->key->toBeString();
});
it('is a higher order message test')->expect(true)->toBeTrue();
describe('a "describe" group of tests', function () {
it('is a test', function () {
describe('a "describe" group of tests', function (): void {
it('is a test', function (): void {
expect(['key' => 'foo'])->toHaveKey('key')->key->toBeString();
});