expectDeprecationWithIdentifier('http://example.com'); Deprecation::trigger('doctrine/dbal', 'http://example.com', 'message'); } public function testExpectNoDeprecationWithIdentifier(): void { $this->expectNoDeprecationWithIdentifier('http://example.com'); Deprecation::trigger('doctrine/dbal', 'http://otherexample.com', 'message'); } }