First set of modifications

This commit is contained in:
dante
2017-08-11 11:10:27 -04:00
parent 211da8bc50
commit 07f0a36aef
121 changed files with 3366 additions and 2768 deletions

View 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();
}