@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
at upstream/main 14 lines 303 B view raw
1<?php 2 3final class DivinerFileAtomizer extends DivinerAtomizer { 4 5 protected function executeAtomize($file_name, $file_data) { 6 $atom = $this->newAtom(DivinerAtom::TYPE_FILE) 7 ->setName($file_name) 8 ->setFile($file_name) 9 ->setContentRaw($file_data); 10 11 return array($atom); 12 } 13 14}