aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAaron Schulz <aschulz@wikimedia.org>2025-03-12 16:58:13 -0700
committerAaron Schulz <aschulz@wikimedia.org>2025-03-14 11:52:56 -0700
commitc43f0f9b0e56d7b8a327140d1fbd1e11452c1390 (patch)
tree639d2c76285b3be7100694343b9beaeb2013b50c /tests
parent7abd333286b46b12d515b29ec75816be4d68a9e4 (diff)
downloadmediawikicore-c43f0f9b0e56d7b8a327140d1fbd1e11452c1390.tar.gz
mediawikicore-c43f0f9b0e56d7b8a327140d1fbd1e11452c1390.zip
DomainEvents: remove "AfterCommit" suffix from event handlers
Change-Id: Id206c7c0ee14da988445d988f1bab2441860a65b
Diffstat (limited to 'tests')
-rw-r--r--tests/phpunit/unit/includes/DomainEvent/EventDispatchEngineTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/unit/includes/DomainEvent/EventDispatchEngineTest.php b/tests/phpunit/unit/includes/DomainEvent/EventDispatchEngineTest.php
index d911396d6745..d2776537be40 100644
--- a/tests/phpunit/unit/includes/DomainEvent/EventDispatchEngineTest.php
+++ b/tests/phpunit/unit/includes/DomainEvent/EventDispatchEngineTest.php
@@ -284,7 +284,7 @@ class EventDispatchEngineTest extends MediaWikiUnitTestCase {
$this->trace =& $trace;
}
- public function handleFooCompleteEventAfterCommit() {
+ public function handleFooCompleteEvent() {
$this->trace[] = 'afterFooComplete';
}
};