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} 19 20