diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-25 08:19:49 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-07-21 23:17:36 +0200 |
commit | 66a215651badf8472e9922b7591cba3cfe9ce333 (patch) | |
tree | b097c9ec7f586e6632f429b59e8c1dd6e9f2a583 /lib/db/adapter.php | |
parent | 62ce3a5613a273c9208f272728ae5002d43d5096 (diff) | |
download | nextcloud-server-66a215651badf8472e9922b7591cba3cfe9ce333.tar.gz nextcloud-server-66a215651badf8472e9922b7591cba3cfe9ce333.zip |
Create DB Connection wrapper and DB\Adapter* classes
Diffstat (limited to 'lib/db/adapter.php')
-rw-r--r-- | lib/db/adapter.php | 17 |
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; + } +} |