mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 12:42:43 +01:00
19 lines
361 B
PHP
19 lines
361 B
PHP
|
<?php
|
||
|
|
||
|
final class PholioRemarkupRule
|
||
|
extends PhabricatorRemarkupRuleObject {
|
||
|
|
||
|
protected function getObjectNamePrefix() {
|
||
|
return 'M';
|
||
|
}
|
||
|
|
||
|
protected function loadObjects(array $ids) {
|
||
|
$viewer = $this->getEngine()->getConfig('viewer');
|
||
|
return id(new PholioMockQuery())
|
||
|
->setViewer($viewer)
|
||
|
->withIDs($ids)
|
||
|
->execute();
|
||
|
}
|
||
|
|
||
|
}
|