summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-20 16:32:07 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-20 16:32:07 +0100
commitf2e5c7060f55dd9e6949630caf029a963c57bea0 (patch)
treec164d5b048dcfd3ef3648435e232b897368f6f85 /db
parentbd3d7a730d27a04711fe468273f51667ff568aca (diff)
finished cleaning up in db
Diffstat (limited to 'db')
-rw-r--r--db/feedtypes.php25
-rw-r--r--db/statusflag.php2
2 files changed, 20 insertions, 7 deletions
diff --git a/db/feedtypes.php b/db/feedtypes.php
index d330a5b2a..725d56eba 100644
--- a/db/feedtypes.php
+++ b/db/feedtypes.php
@@ -1,16 +1,29 @@
<?php
+
/**
-* ownCloud - News app
+* ownCloud - News
*
+* @author Alessandro Cosentino
* @author Bernhard Posselt
-* Copyright (c) 2012 - Bernhard Posselt <nukeawhale@gmail.com>
+* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
+* @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
-* This file is licensed under the Affero General Public License version 3 or later.
-* See the COPYING-README file
+* You should have received a copy of the GNU Affero General Public
+* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
-namespace OCA\News;
+namespace OCA\News\Db;
class FeedType {
@@ -18,5 +31,5 @@ class FeedType {
const FOLDER = 1;
const STARRED = 2;
const SUBSCRIPTIONS = 3;
- const SHARED = 4;
+ const SHARED = 4;
}; \ No newline at end of file
diff --git a/db/statusflag.php b/db/statusflag.php
index 351d5d40a..eccf1e199 100644
--- a/db/statusflag.php
+++ b/db/statusflag.php
@@ -27,7 +27,7 @@ namespace OCA\News\Db;
class StatusFlag {
const UNREAD = 0x02;
- const STARRED = 0x04;
+ const STARRED = 0x04;
const DELETED = 0x08;
const UPDATED = 0x16;
} \ No newline at end of file