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