Code Duplication    Length = 10-12 lines in 2 locations

app/controllers/TachesController.php 1 location

@@ 24-35 (lines=12) @@
21
22
    }
23
24
    public function soloUpdateAction()
25
    {
26
27
        $name = $this->request->getPost('name', 'string');
28
        //Cr�er la fonction variable 'set' en fonction du name en POST
29
        $func = 'set' . ucfirst($name);
30
        $projet = call_user_func($this->model . '::findFirst', $_POST['pk']);
31
        $projet->$func($_POST['value']);
32
        $projet->save();
33
34
        $this->useCaseUpdate($projet);
35
    }
36
37
    public function deleteAction($id = null)
38
    {

app/controllers/ControllerBase.php 1 location

@@ 102-111 (lines=10) @@
99
    }
100
101
    //PErmet l'édition d'un seul champ à la fois
102
    public function soloUpdateAction()
103
    {
104
        $name = $this->request->getPost('name', 'string');
105
        //Créer la fonction variable 'set' en fonction du name en POST
106
        $func = 'set' . ucfirst($name);
107
        $projet = call_user_func($this->model . '::findFirst', $_POST['pk']);
108
        $projet->$func($_POST['value']);
109
        $projet->save();
110
111
    }
112
113
114
    public function deleteAction($id = null)