summaryrefslogtreecommitdiffstats
path: root/lib/db/adapter.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/db/adapter.php')
-rw-r--r--lib/db/adapter.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/db/adapter.php b/lib/db/adapter.php
new file mode 100644
index 00000000000..c62e35495cd
--- /dev/null
+++ b/lib/db/adapter.php
@@ -0,0 +1,17 @@
+<?php
+/**
+ * Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace OC\DB;
+
+class Adapter {
+ protected $conn;
+
+ public function __construct($conn) {
+ $this->conn = $conn;
+ }
+}