diff --git a/patches/Patch.php b/patches/Patch.php new file mode 100644 --- /dev/null +++ b/patches/Patch.php @@ -0,0 +1,27 @@ + + */ +define("VERSION", "0.1"); +require_once '../config/config.php'; + +use bfw\database\Database; + +abstract class Patch { + + protected $db; + + public function __construct() { + $this->db = Database::getInstance(); + + printf("PatchManagement Version %s\n\n", VERSION); + } + + abstract public function setUp(); + + abstract public function tearDown(); +}