summaryrefslogtreecommitdiffstats
path: root/db/mapperfactory.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
commit42d69a95f3276a2d6089ca68f635c4e2f6aa7a23 (patch)
tree6a17fd7998f291e6dec1d996c1e7c724b92b8e58 /db/mapperfactory.php
parent0e6598b0734fb927109f745d9c0f3a8605a30ca5 (diff)
convert tabs indention to indention with 4 spaces because of mixing of both variants in code and better readability on github and websites because you cant set the indention width there and 8 spaces will be used for a tab
Diffstat (limited to 'db/mapperfactory.php')
-rw-r--r--db/mapperfactory.php34
1 files changed, 17 insertions, 17 deletions
diff --git a/db/mapperfactory.php b/db/mapperfactory.php
index 4af75cefa..6bc9346ca 100644
--- a/db/mapperfactory.php
+++ b/db/mapperfactory.php
@@ -18,23 +18,23 @@ use \OCA\News\Db\Postgres\ItemMapper as PostgresItemMapper;
class MapperFactory {
- private $dbType;
- private $db;
-
- public function __construct($dbType, IDb $db) {
- $this->dbType = $dbType;
- $this->db = $db;
- }
-
-
- public function getItemMapper() {
- switch($this->dbType) {
- case 'pgsql':
- return new PostgresItemMapper($this->db);
- default:
- return new ItemMapper($this->db);
- }
- }
+ private $dbType;
+ private $db;
+
+ public function __construct($dbType, IDb $db) {
+ $this->dbType = $dbType;
+ $this->db = $db;
+ }
+
+
+ public function getItemMapper() {
+ switch($this->dbType) {
+ case 'pgsql':
+ return new PostgresItemMapper($this->db);
+ default:
+ return new ItemMapper($this->db);
+ }
+ }
} \ No newline at end of file