Files
luos/workflow/engine/classes/Patch.php
Marco A. Nina Mena 48cad5f1b2 files
2017-08-11 12:19:39 -04:00

15 lines
308 B
PHP

<?php
/**
* class, helping to set some not desirable settings but necesary
* @author reav
*
*/
abstract class Patch
{
static protected $isPathchable = false;
static public $dbAdapter = 'mysql';
abstract static public function isApplicable();
abstract static public function execute();
}