* @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link http://orange-management.com */ namespace phpOMS\System\File; use phpOMS\Datatypes\Enum; /** * Database type enum. * * Database types that are supported by the application * * @category Framework * @package phpOMS\System * @author OMS Development Team * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 */ abstract class ContentPutMode extends Enum { /* public */ const APPEND = 1; /* public */ const PREPEND = 2; /* public */ const REPLACE = 4; /* public */ const CREATE = 8; }