We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b045ce4 commit 05da8e0Copy full SHA for 05da8e0
schema.json
@@ -67,6 +67,10 @@
67
"security issues": {
68
"type": "integer",
69
"minimum": 0
70
+ },
71
+ "fixed issues": {
72
+ "type": "integer",
73
+ "minimum": 0
74
}
75
76
},
src/Application/Console/Formatters/Json.php
@@ -48,8 +48,10 @@ public function format(
48
'architecture' => $results->getStructure(),
49
'style' => $results->getStyle(),
50
'security issues' => $results->getTotalSecurityIssues(),
51
+ 'fixed issues' => $results->getTotalFix(),
52
],
53
];
54
+
55
$data += $this->issues($insightCollection, $metrics);
56
57
$json = json_encode($data);
0 commit comments