summaryrefslogtreecommitdiffstats
path: root/lib/collection.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/collection.php')
-rw-r--r--lib/collection.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/collection.php b/lib/collection.php
index 3c36dbceb..30b926c00 100644
--- a/lib/collection.php
+++ b/lib/collection.php
@@ -4,10 +4,10 @@
*
* @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;
@@ -16,9 +16,9 @@ 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;
}
@@ -26,9 +26,9 @@ class Collection {
public function getId() {
return $this->id;
}
-
+
public function setId($id) {
$this->id = $id;
}
-
+
}