Code Duplication    Length = 10-10 lines in 2 locations

src/Http/Controllers/Health.php 2 locations

@@ 89-98 (lines=10) @@
86
        return response((string) view(config('health.views.panel')));
87
    }
88
89
    public function assetAppJs()
90
    {
91
        $file = File::get(config('health.assets.js'));
92
93
        $response = response()->make($file);
94
95
        $response->header('Content-Type', 'text/css');
96
97
        return $response;
98
    }
99
100
    public function assetAppCss()
101
    {
@@ 100-109 (lines=10) @@
97
        return $response;
98
    }
99
100
    public function assetAppCss()
101
    {
102
        $file = File::get(config('health.assets.css'));
103
104
        $response = response()->make($file);
105
106
        $response->header('Content-Type', 'text/css');
107
108
        return $response;
109
    }
110
111
    public function config()
112
    {