Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/backgroundjob/regulartask.php')
-rw-r--r--lib/backgroundjob/regulartask.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/backgroundjob/regulartask.php b/lib/backgroundjob/regulartask.php
index 53bd4eb5e9b..9976872ee13 100644
--- a/lib/backgroundjob/regulartask.php
+++ b/lib/backgroundjob/regulartask.php
@@ -32,7 +32,7 @@ class OC_BackgroundJob_RegularTask{
* @param $method method name
* @return true
*/
- static public function register( $klass, $method ){
+ static public function register( $klass, $method ) {
// Create the data structure
self::$registered["$klass-$method"] = array( $klass, $method );
@@ -46,7 +46,7 @@ class OC_BackgroundJob_RegularTask{
*
* key is string "$klass-$method", value is array( $klass, $method )
*/
- static public function all(){
+ static public function all() {
return self::$registered;
}
}