@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
1<?php
2
3/**
4 * Simple blob store DAO for @{class:PhabricatorMySQLFileStorageEngine}.
5 */
6final class PhabricatorFileStorageBlob extends PhabricatorFileDAO {
7
8 protected $data;
9
10 protected function getConfiguration() {
11 return array(
12 self::CONFIG_BINARY => array(
13 'data' => true,
14 ),
15 ) + parent::getConfiguration();
16 }
17
18}