Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/files/storage/PhabricatorFileStorageBlob.php
12242 views
1
<?php
2
3
/**
4
* Simple blob store DAO for @{class:PhabricatorMySQLFileStorageEngine}.
5
*/
6
final 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
}
19
20