mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
12 lines
219 B
PHP
12 lines
219 B
PHP
|
<?php
|
||
|
|
||
|
$table = new AlmanacService();
|
||
|
|
||
|
foreach (new LiskMigrationIterator($table) as $service) {
|
||
|
PhabricatorSearchWorker::queueDocumentForIndexing(
|
||
|
$service->getPHID(),
|
||
|
array(
|
||
|
'force' => true,
|
||
|
));
|
||
|
}
|