Skip to content
Snippets Groups Projects

Issue #3271144: Ensure new, changed or deleted service definitions are in the correct state after an update

Merged Issue #3271144: Ensure new, changed or deleted service definitions are in the correct state after an update
7 files
+ 68
75
Compare changes
  • Side-by-side
  • Inline
Files
7
<?php
namespace Drupal\updated_module;
/**
* A generic service class to prove that services are reloaded after an update.
*/
class PreUpdateService {
/**
* Returns a string value.
*
* @return string
* The string value.
*/
public function myMethod(): string {
return 'PreUpdateService:myMethod()';
}
}
Loading