summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-20 16:30:25 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-20 16:30:25 +0100
commit289980a50cc95a55418f2fb831da5e884fc149eb (patch)
treeb7fd7714c9e1fb4c6a68d30075462ca6435f7209 /db
parent85ba81650ba49798a817403ef815ee8eae77820e (diff)
removed collection
Diffstat (limited to 'db')
-rw-r--r--db/collection.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/db/collection.php b/db/collection.php
deleted file mode 100644
index 30b926c00..000000000
--- a/db/collection.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-/**
-* ownCloud - News app
-*
-* @author Alessandro Cosentino
-* Copyright (c) 2012 - Alessandro Cosentino <cosenal@gmail.com>
-*
-* This file is licensed under the Affero General Public License version 3 or later.
-* See the COPYING-README file
-*
-*/
-
-namespace OCA\News;
-
-/**
- * This class models a collection, which is either a feed or a folder.
- */
-class Collection {
-
- private $id;
-
- public function __construct($id) {
- $this->id = $id;
- }
-
- public function getId() {
- return $this->id;
- }
-
- public function setId($id) {
- $this->id = $id;
- }
-
-}