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:
authordiosmosis <benakamoorthi@fastmail.fm>2013-11-13 17:15:52 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2013-11-13 17:15:52 +0400
commit631ae8438f4ed6e9b040dafd4d954a22911cf2e7 (patch)
tree52a135ac79fe000dfa853d8e627391181cb416cc /core/ScheduledTask.php
parent5b8d794127611b3c4887cbf8410bd69001c4ea5d (diff)
Refs #4200, finished documenting scheduled task related classes.
Diffstat (limited to 'core/ScheduledTask.php')
-rw-r--r--core/ScheduledTask.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/ScheduledTask.php b/core/ScheduledTask.php
index 5a03897351..dbe36f79ac 100644
--- a/core/ScheduledTask.php
+++ b/core/ScheduledTask.php
@@ -15,8 +15,8 @@ use Exception;
use Piwik\ScheduledTime;
/**
- * Contains metadata describing and referencing a chunk of PHP code that should be
- * executed regularly.
+ * Contains metadata describing a chunk of PHP code that should be executed at regular
+ * intervals.
*
* See the [TaskScheduler](#) docs to learn more about scheduled tasks.
*
@@ -111,7 +111,7 @@ class ScheduledTask
}
/**
- * Return the object instance on which the method should be executed. Returns a class
+ * Returns the object instance on which the method should be executed. Returns a class
* name if the method is static.
*
* @return mixed