Issue #3444184 by mondrake, catch: Remove dead KernelTestBase::stop() method

merge-requests/7514/merge
xjm 2024-04-29 15:19:56 -05:00
parent 05fc58ab6b
commit c15d81e8d9
No known key found for this signature in database
GPG Key ID: 206B0B8743BDF4C2
1 changed files with 6 additions and 0 deletions

View File

@ -1007,8 +1007,14 @@ abstract class KernelTestBase extends TestCase implements ServiceProviderInterfa
/**
* Stops test execution.
*
* @deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. There is
* no replacement.
*
* @see https://www.drupal.org/node/3444223
*/
protected function stop() {
@trigger_error(__METHOD__ . '() is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3444223', E_USER_DEPRECATED);
$this->getTestResultObject()->stop();
}