Completed
Push — Projets ( a98de7...4109c3 )
by Hugo
02:43
created
app/controllers/ProjetsController.php 3 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -167,6 +167,10 @@
 block discarded – undo
167 167
     }
168 168
 
169 169
     //Calcule le taux d'avancement total d'un projet
170
+
171
+    /**
172
+     * @param Usecase[] $usecases
173
+     */
170 174
     public function avancementReel($usecases)
171 175
     {
172 176
         //Calcul le taux de finition du projet en fonction du nombre d'usecases total et du taux d'avancement sur chaque usecases.
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@
 block discarded – undo
180 180
         $contributor = array_unique($contributor, SORT_REGULAR);
181 181
 
182 182
         $this->view->setVar("contributors", $contributor);
183
-        $this->view->setVar("usecases", $usecases);;
183
+        $this->view->setVar("usecases", $usecases); ;
184 184
 
185 185
     }
186 186
 
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 use Phalcon\Mvc\Controller;
4
-use Phalcon\Mvc\Url;
5 4
 
6 5
 class ControllerBase extends Controller
7 6
 {
Please login to merge, or discard this patch.