summaryrefslogtreecommitdiff
path: root/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php
diff options
context:
space:
mode:
authorYuriy Andamasov <yuriy@vyos.io>2026-05-23 17:23:31 +0300
committerYuriy Andamasov <yuriy@vyos.io>2026-05-23 17:23:31 +0300
commit3e8f4190bf666133b59112e351071c8d92b77def (patch)
treebc4e2ad0aeeb0ba516aa8e5a2b85e8bd7075612e /src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php
parente5fbde8bb9b21d264f71f25881b44db1af3d03c6 (diff)
downloadphorge-elasticsearch-modern-3e8f4190bf666133b59112e351071c8d92b77def.tar.gz
phorge-elasticsearch-modern-3e8f4190bf666133b59112e351071c8d92b77def.zip
Tests: refresh stale docblock after engine abstract→class revert
The class docblock still described the engine as abstract, from before commit 011eec1 reverted 'abstract class' to plain 'class'. Updated wording to accurately describe the concrete engine and the test-double's role. 🤖 Generated by [robots](https://vyos.io)
Diffstat (limited to 'src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php')
-rw-r--r--src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php b/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php
index 0362f95..7e20fdc 100644
--- a/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php
+++ b/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php
@@ -1,9 +1,9 @@
<?php
/**
- * Minimal concrete subclass for unit-testing the abstract engine.
- * Only the abstract stubs from PhabricatorFulltextStorageEngine are
- * satisfied here; no real Elasticsearch I/O occurs in tests.
+ * Test-double subclass of the concrete engine used by unit tests.
+ * Overrides host-dependent methods so tests run without a real
+ * PhabricatorSearchService; no actual Elasticsearch I/O occurs.
*/
final class VyOSElasticModernFulltextStorageEngineTestDouble
extends VyOSElasticModernFulltextStorageEngine {