summaryrefslogtreecommitdiffstats
path: root/backgroundjob
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-23 14:39:23 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-23 14:39:23 +0100
commit682b01f58db3a522f39b0d6723a909660e440a81 (patch)
tree7e0f2ef3ac82f65d7b4482b2c4ff4df7e87bdac3 /backgroundjob
parent7837e71f70749f400fc075e9b27b2c92d5928ea9 (diff)
fix class namespaces
Diffstat (limited to 'backgroundjob')
-rw-r--r--backgroundjob/task.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/backgroundjob/task.php b/backgroundjob/task.php
index 098ff8393..e0b4d04f8 100644
--- a/backgroundjob/task.php
+++ b/backgroundjob/task.php
@@ -20,12 +20,13 @@
*
*/
-namespace OCA\News;
+namespace OCA\News\Backgroundjob;
+
/**
* This class maps a feed to an entry in the feeds table of the database.
*/
-class Backgroundjob {
+class Task {
static public function sortFeeds( $a, $b ) {
if( $a->getId() == $b->getId() ) {
return 0;