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
+2 -2
View File
@@ -2,7 +2,7 @@
use Pest\Plugins\Environment;
test('environment is set to CI when --ci option is used', function () {
test('environment is set to CI when --ci option is used', function (): void {
$previousName = Environment::name();
$plugin = new Environment;
@@ -14,7 +14,7 @@ test('environment is set to CI when --ci option is used', function () {
Environment::name($previousName);
});
test('environment is set to Local when --ci option is not used', function () {
test('environment is set to Local when --ci option is not used', function (): void {
$plugin = new Environment;
$plugin->handleArguments(['foo', 'bar', 'baz']);