@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 20 lines 364 B view raw
1<?php 2 3final class PhabricatorFileRawStorageFormat 4 extends PhabricatorFileStorageFormat { 5 6 const FORMATKEY = 'raw'; 7 8 public function getStorageFormatName() { 9 return pht('Raw Data'); 10 } 11 12 public function newReadIterator($raw_iterator) { 13 return $raw_iterator; 14 } 15 16 public function newWriteIterator($raw_iterator) { 17 return $raw_iterator; 18 } 19 20}