2017-08-11 11:10:27 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* class, helping to set some not desirable settings but necesary
|
|
|
|
|
* @author reav
|
|
|
|
|
*
|
|
|
|
|
*/
|
2017-08-11 12:19:39 -04:00
|
|
|
abstract class Patch
|
2017-08-11 11:10:27 -04:00
|
|
|
{
|
|
|
|
|
static protected $isPathchable = false;
|
|
|
|
|
static public $dbAdapter = 'mysql';
|
|
|
|
|
abstract static public function isApplicable();
|
|
|
|
|
abstract static public function execute();
|
|
|
|
|
}
|