Total Complexity | 8 |
Total Lines | 100 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
21 | abstract class FirebaseServiceLog |
||
22 | { |
||
23 | /** |
||
24 | * @ORM\Column(type="string", length=64) |
||
25 | */ |
||
26 | protected $serverKey; |
||
27 | |||
28 | /** |
||
29 | * @ORM\Column(type="text") |
||
30 | */ |
||
31 | protected $body; |
||
32 | |||
33 | /** |
||
34 | * @ORM\Column(type="string", length=16) |
||
35 | */ |
||
36 | protected $status; |
||
37 | |||
38 | /** |
||
39 | * @ORM\Column(type="text") |
||
40 | */ |
||
41 | protected $firebaseLog; |
||
42 | |||
43 | /** |
||
44 | * @return mixed |
||
45 | */ |
||
46 | public function getBody() |
||
47 | { |
||
48 | return $this->body; |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * @return mixed |
||
53 | */ |
||
54 | public function getFirebaseLog() |
||
55 | { |
||
56 | return $this->firebaseLog; |
||
57 | } |
||
58 | |||
59 | /** |
||
60 | * @return mixed |
||
61 | */ |
||
62 | public function getServerKey() |
||
63 | { |
||
64 | return $this->serverKey; |
||
65 | } |
||
66 | |||
67 | /** |
||
68 | * @return mixed |
||
69 | */ |
||
70 | public function getStatus() |
||
71 | { |
||
72 | return $this->status; |
||
73 | } |
||
74 | |||
75 | /** |
||
76 | * @param mixed $body |
||
77 | * |
||
78 | * @return self |
||
79 | */ |
||
80 | public function setBody($body) |
||
81 | { |
||
82 | $this->body = $body; |
||
83 | |||
84 | return $this; |
||
85 | } |
||
86 | |||
87 | /** |
||
88 | * @param mixed $firebaseLog |
||
89 | * |
||
90 | * @return self |
||
91 | */ |
||
92 | public function setFirebaseLog($firebaseLog) |
||
97 | } |
||
98 | |||
99 | /** |
||
100 | * @param mixed $serverKey |
||
101 | * |
||
102 | * @return self |
||
103 | */ |
||
104 | public function setServerKey($serverKey) |
||
105 | { |
||
106 | $this->serverKey = $serverKey; |
||
107 | |||
108 | return $this; |
||
109 | } |
||
110 | |||
111 | /** |
||
112 | * @param mixed $status |
||
113 | * |
||
114 | * @return self |
||
115 | */ |
||
116 | public function setStatus($status) |
||
121 | } |
||
122 | |||
123 | } |
||
124 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths