First set of modifications
This commit is contained in:
19
workflow/engine/classes/Patch.php
Normal file
19
workflow/engine/classes/Patch.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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();
|
||||
}
|
||||
Reference in New Issue
Block a user