mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-01 06:59:15 +01:00
20 lines
377 B
PHP
20 lines
377 B
PHP
|
<?php
|
||
|
|
||
|
final class PholioMockTimelineEngine
|
||
|
extends PhabricatorTimelineEngine {
|
||
|
|
||
|
protected function newTimelineView() {
|
||
|
$viewer = $this->getViewer();
|
||
|
$object = $this->getObject();
|
||
|
|
||
|
PholioMockQuery::loadImages(
|
||
|
$viewer,
|
||
|
array($object),
|
||
|
$need_inline_comments = true);
|
||
|
|
||
|
return id(new PholioTransactionView())
|
||
|
->setMock($object);
|
||
|
}
|
||
|
|
||
|
}
|