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:
authorrobocoder <anthon.pang@gmail.com>2010-08-12 22:07:25 +0400
committerrobocoder <anthon.pang@gmail.com>2010-08-12 22:07:25 +0400
commitcb4bcf306ef2475777fd3a816f3677ff36cf0564 (patch)
tree2034d501d2e604fa8dacd596aadb3644c606c987 /core/ScheduledTask.php
parent8de898e651c6735f2b9ca03c2f4797c83c47d34e (diff)
fix formatting
git-svn-id: http://dev.piwik.org/svn/trunk@2922 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/ScheduledTask.php')
-rw-r--r--core/ScheduledTask.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/core/ScheduledTask.php b/core/ScheduledTask.php
index 3a6461bb38..ee0f61d331 100644
--- a/core/ScheduledTask.php
+++ b/core/ScheduledTask.php
@@ -18,22 +18,22 @@
*/
class Piwik_ScheduledTask
{
- /**
- * Class name where the specified method is located
- * @var string
- */
+ /**
+ * Class name where the specified method is located
+ * @var string
+ */
var $className;
-#
- /**
- * Class method to run when task is scheduled
- * @var string
- */
+
+ /**
+ * Class method to run when task is scheduled
+ * @var string
+ */
var $methodName;
- /**
- * The scheduled time policy
- * @var Piwik_ScheduledTime
- */
+ /**
+ * The scheduled time policy
+ * @var Piwik_ScheduledTime
+ */
var $scheduledTime;
function __construct( $_className, $_methodName, $_scheduledTime)