1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00
This commit is contained in:
Jordi Boggiano 2022-08-17 15:20:07 +03:00 committed by GitHub
parent 6e205a0c84
commit 131da999ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
357 changed files with 5943 additions and 9174 deletions

View file

@ -44,7 +44,7 @@ class ErrorHandlerTest extends TestCase
self::expectExceptionMessage('Undefined index: baz');
}
$array = array('foo' => 'bar');
$array = ['foo' => 'bar'];
// @phpstan-ignore-next-line
$array['baz'];
}
@ -63,7 +63,7 @@ class ErrorHandlerTest extends TestCase
}
// @phpstan-ignore-next-line
array_merge(array(), 'string');
array_merge([], 'string');
}
/**