Files
luos/workflow/engine/classes/Patch.php

20 lines
401 B
PHP
Raw Normal View History

2017-08-11 11:10:27 -04:00
<?php
/**
* class, helping to set some not desirable settings but necesary
* @author reav
*
*/
/**
* 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();
}