summaryrefslogtreecommitdiff
path: root/app/Model
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-12-14 22:13:11 -0500
committerFrederic Guillot <fred@kanboard.net>2015-12-14 22:13:11 -0500
commit9e1f4fa6c7eae1b46cf5431ab085b82e970e2d57 (patch)
treeaa0f03c5c1d7897246e513e52c6a1f823709dd3d /app/Model
parentdb7a9ddf5f6744956dc6826dd912987b7591177e (diff)
Improve pull-request that compare hours
Diffstat (limited to 'app/Model')
-rw-r--r--app/Model/ProjectAnalytic.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/Model/ProjectAnalytic.php b/app/Model/ProjectAnalytic.php
index 79277e79..d23695dc 100644
--- a/app/Model/ProjectAnalytic.php
+++ b/app/Model/ProjectAnalytic.php
@@ -202,14 +202,14 @@ class ProjectAnalytic extends Base
// Init values
$stats['closed'] = array(
- 'time_spent' => 0,
- 'time_estimated' => 0,
- );
- $stats['open'] = array(
- 'time_spent' => 0,
- 'time_estimated' => 0,
- );
+ 'time_spent' => 0,
+ 'time_estimated' => 0,
+ );
+ $stats['open'] = array(
+ 'time_spent' => 0,
+ 'time_estimated' => 0,
+ );
// Add times spent and estimated to each status
foreach ($tasks as &$task) {