summaryrefslogtreecommitdiffstats
path: root/lib/collection.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/collection.php')
-rw-r--r--lib/collection.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/lib/collection.php b/lib/collection.php
deleted file mode 100644
index 30b926c00..000000000
--- a/lib/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;
- }
-
-}