Test Failed
Push — master ( f043ce...f1785b )
by Antonio Carlos
04:03
created

Health::panel()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 6
ccs 3
cts 3
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace PragmaRX\Health\Http\Controllers;
4
5
use PragmaRX\Health\Service;
6
use Illuminate\Routing\Controller;
7
use Illuminate\Support\Facades\File;
8
9
class Health extends Controller
10
{
11
    /**
12
     * @var Service
13
     */
14
    private $healthService;
15
16
    /**
17
     * Health constructor.
18
     *
19
     * @param Service $healthService
20
     */
21 1
    public function __construct(Service $healthService)
22
    {
23 1
        $this->healthService = $healthService;
24 1
    }
25
26
    /**
27
     * Check all resources.
28
     *
29
     * @return array
30
     * @throws \Exception
31
     */
32 1
    public function check()
33
    {
34 1
        $this->healthService->setAction('check');
35
36 1
        return response($this->healthService->health());
37
    }
38
39
    /**
40
     * Check and get one resource.
41
     *
42
     * @param $slug
43
     * @return mixed
44
     * @throws \Exception
45
     */
46 1
    public function getResource($slug)
47
    {
48 1
        $this->healthService->setAction('resource');
49
50 1
        return $this->healthService->resource($slug);
51
    }
52
53
    /**
54
     * Get all resources.
55
     *
56
     * @return mixed
57
     * @throws \Exception
58
     */
59 1
    public function allResources()
60
    {
61 1
        return $this->healthService->getResources();
62
    }
63
64
    /**
65
     * @return mixed
66
     * @throws \Exception
67
     */
68
    public function string()
69
    {
70
        $this->healthService->setAction('string');
71
72
        return response(
73
            $this->healthService->string()
74
        );
75
    }
76
77
    /**
78
     * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
79
     * @throws \Exception
80
     */
81 1
    public function panel()
82
    {
83 1
        $this->healthService->setAction('panel');
84
85 1
        return response((string) view(config('health.views.panel')));
86
    }
87
88 View Code Duplication
    public function assetAppJs()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
89
    {
90
        $file = File::get(config('health.assets.js'));
91
92
        $response = response()->make($file);
0 ignored issues
show
Bug introduced by
The method make does only exist in Illuminate\Contracts\Routing\ResponseFactory, but not in Illuminate\Http\Response.

It seems like the method you are trying to call exists only in some of the possible types.

Let’s take a look at an example:

class A
{
    public function foo() { }
}

class B extends A
{
    public function bar() { }
}

/**
 * @param A|B $x
 */
function someFunction($x)
{
    $x->foo(); // This call is fine as the method exists in A and B.
    $x->bar(); // This method only exists in B and might cause an error.
}

Available Fixes

  1. Add an additional type-check:

    /**
     * @param A|B $x
     */
    function someFunction($x)
    {
        $x->foo();
    
        if ($x instanceof B) {
            $x->bar();
        }
    }
    
  2. Only allow a single type to be passed if the variable comes from a parameter:

    function someFunction(B $x) { /** ... */ }
    
Loading history...
93
94
        $response->header('Content-Type', 'text/css');
95
96
        return $response;
97
    }
98
99 View Code Duplication
    public function assetAppCss()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
100
    {
101
        $file = File::get(config('health.assets.css'));
102
103
        $response = response()->make($file);
0 ignored issues
show
Bug introduced by
The method make does only exist in Illuminate\Contracts\Routing\ResponseFactory, but not in Illuminate\Http\Response.

It seems like the method you are trying to call exists only in some of the possible types.

Let’s take a look at an example:

class A
{
    public function foo() { }
}

class B extends A
{
    public function bar() { }
}

/**
 * @param A|B $x
 */
function someFunction($x)
{
    $x->foo(); // This call is fine as the method exists in A and B.
    $x->bar(); // This method only exists in B and might cause an error.
}

Available Fixes

  1. Add an additional type-check:

    /**
     * @param A|B $x
     */
    function someFunction($x)
    {
        $x->foo();
    
        if ($x instanceof B) {
            $x->bar();
        }
    }
    
  2. Only allow a single type to be passed if the variable comes from a parameter:

    function someFunction(B $x) { /** ... */ }
    
Loading history...
104
105
        $response->header('Content-Type', 'text/css');
106
107
        return $response;
108
    }
109
110 1
    public function config()
111
    {
112 1
        return config('health');
113
    }
114
}
115