mirror of
https://github.com/pestphp/pest.git
synced 2026-07-24 10:30:03 +02:00
fix: package lock fingerprint
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
<?php
|
||||
|
||||
test('deprecated', function () {
|
||||
str_contains(null, null);
|
||||
declare(strict_types=1);
|
||||
|
||||
test('deprecated', function (): void {
|
||||
str_contains('', '');
|
||||
|
||||
expect(true)->toBeTrue();
|
||||
});
|
||||
|
||||
test('user deprecated', function () {
|
||||
test('user deprecated', function (): void {
|
||||
trigger_error('Since foo 1.0: This is a deprecation description', \E_USER_DEPRECATED);
|
||||
|
||||
expect(true)->toBeTrue();
|
||||
|
||||
Reference in New Issue
Block a user