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
+4 -4
View File
@@ -1,17 +1,17 @@
<?php
it('allows access to the underlying expectNotToPerformAssertions method', function () {
it('allows access to the underlying expectNotToPerformAssertions method', function (): void {
$this->expectNotToPerformAssertions();
$result = 1 + 1;
});
it('allows performing no expectations without being risky', function () {
it('allows performing no expectations without being risky', function (): void {
$result = 1 + 1;
})->throwsNoExceptions();
describe('a "describe" group of tests', function () {
it('allows performing no expectations without being risky', function () {
describe('a "describe" group of tests', function (): void {
it('allows performing no expectations without being risky', function (): void {
$result = 1 + 1;
});
})->throwsNoExceptions();