Code Duplication    Length = 10-10 lines in 3 locations

Classes/Controller/BackendController.php 3 locations

@@ 39-48 (lines=10) @@
36
     *
37
     * @param string $call
38
     */
39
    public function seoAction($call)
40
    {
41
        $apiCallString = 'zoom_' . $call . '_table';
42
43
        $table = $this->loader->load($apiCallString);
44
        $this->view->assignMultiple([
45
            'table'      => $table,
46
            'moduleName' => 'SEO Aspekte'
47
        ]);
48
    }
49
50
    /**
51
     * @param string $call
@@ 53-62 (lines=10) @@
50
    /**
51
     * @param string $call
52
     */
53
    public function contentAction($call)
54
    {
55
        $apiCallString = 'zoom_' . $call . '_table';
56
57
        $table = $this->loader->load($apiCallString);
58
        $this->view->assignMultiple([
59
            'table'      => $table,
60
            'moduleName' => 'Inhaltliche Aspekte'
61
        ]);
62
    }
63
64
    /**
65
     * @param string $call
@@ 67-76 (lines=10) @@
64
    /**
65
     * @param string $call
66
     */
67
    public function technicalAction($call)
68
    {
69
        $apiCallString = 'zoom_' . $call . '_table';
70
71
        $table = $this->loader->load($apiCallString);
72
        $this->view->assignMultiple([
73
            'table'      => $table,
74
            'moduleName' => 'Technische Aspekte'
75
        ]);
76
    }
77
78
    /**
79
     *