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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Raue <christian.raue@gmail.com>2014-07-23 22:27:56 +0400
committerChristian Raue <christian.raue@gmail.com>2014-07-23 22:27:56 +0400
commitd9adcfe6169c6c10059a670f2ed984908eb4e105 (patch)
tree25cfca25851214c1b744a07e67e9c120adfd7513 /core/ScheduledTask.php
parent2788e1dad22533f3e0dbddbdd16c51251c4e130a (diff)
removed lots of trailing whitespace
Diffstat (limited to 'core/ScheduledTask.php')
-rw-r--r--core/ScheduledTask.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/core/ScheduledTask.php b/core/ScheduledTask.php
index 18cb2aa94e..15b702dab8 100644
--- a/core/ScheduledTask.php
+++ b/core/ScheduledTask.php
@@ -15,9 +15,9 @@ use Piwik\ScheduledTime;
/**
* Contains metadata referencing PHP code that should be executed at regular
* intervals.
- *
+ *
* See the {@link TaskScheduler} docs to learn more about scheduled tasks.
- *
+ *
*
* @api
*/
@@ -67,7 +67,7 @@ class ScheduledTask
/**
* Constructor.
- *
+ *
* @param mixed $objectInstance The object or class that contains the method to execute regularly.
* Usually this will be a {@link Plugin} instance.
* @param string $methodName The name of the method that will be regularly executed.
@@ -104,11 +104,11 @@ class ScheduledTask
return $namespaced;
}
-
+
/**
* Returns the object instance that contains the method to execute. Returns a class
* name if the method is static.
- *
+ *
* @return mixed
*/
public function getObjectInstance()
@@ -118,7 +118,7 @@ class ScheduledTask
/**
* Returns the name of the class that contains the method to execute.
- *
+ *
* @return string
*/
public function getClassName()
@@ -128,7 +128,7 @@ class ScheduledTask
/**
* Returns the name of the method that will be executed.
- *
+ *
* @return string
*/
public function getMethodName()
@@ -139,7 +139,7 @@ class ScheduledTask
/**
* Returns the value that will be passed to the method when executed, or `null` if
* no value will be supplied.
- *
+ *
* @return string|null
*/
public function getMethodParameter()
@@ -160,7 +160,7 @@ class ScheduledTask
/**
* Returns the time in milliseconds when this task will be executed next.
- *
+ *
* @return int
*/
public function getRescheduledTime()
@@ -182,11 +182,11 @@ class ScheduledTask
/**
* Returns a unique name for this scheduled task. The name is stored in the DB and is used
* to store a task's previous execution time. The name is created using:
- *
+ *
* - the name of the class that contains the method to execute,
* - the name of the method to regularly execute,
* - and the value that is passed to the executed task.
- *
+ *
* @return string
*/
public function getName()