patches/Patch.php
changeset 30 5751ca5a55c0
new file mode 100644
--- /dev/null
+++ b/patches/Patch.php
@@ -0,0 +1,27 @@
+<?php
+
+/**
+ * Patch-Management for The BFW Framework
+ *
+ * @copyright Copyright(C) 2015 4customers
+ * @author    Markus Bröker<mbroeker@4customers.de>
+ */
+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();
+}