{"$schema":"https://json.schemastore.org/sarif-2.1.0.json","version":"2.1.0","runs":[{"tool":{"driver":{"name":"codehealth","informationUri":"https://codehealth.canine.dev","rules":[{"id":"D1","name":"Cyclomatic Complexity","shortDescription":{"text":"Cyclomatic Complexity"},"helpUri":"https://codehealth.canine.dev/dimensions/D1"},{"id":"D2","name":"Cognitive Complexity","shortDescription":{"text":"Cognitive Complexity"},"helpUri":"https://codehealth.canine.dev/dimensions/D2"},{"id":"D3","name":"God Classes","shortDescription":{"text":"God Classes"},"helpUri":"https://codehealth.canine.dev/dimensions/D3"},{"id":"D4","name":"Code Duplication","shortDescription":{"text":"Code Duplication"},"helpUri":"https://codehealth.canine.dev/dimensions/D4"},{"id":"D13","name":"Secret Scanning","shortDescription":{"text":"Secret Scanning"},"helpUri":"https://codehealth.canine.dev/dimensions/D13","relationships":[{"target":{"id":"CWE-798","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-259","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-798","CWE-259"]}},{"id":"D15","name":"Churn \u00D7 Complexity Hotspots","shortDescription":{"text":"Churn \u00D7 Complexity Hotspots"},"helpUri":"https://codehealth.canine.dev/dimensions/D15"},{"id":"D16","name":"Bus Factor","shortDescription":{"text":"Bus Factor"},"helpUri":"https://codehealth.canine.dev/dimensions/D16"},{"id":"D19","name":"Documentation Quality","shortDescription":{"text":"Documentation Quality"},"helpUri":"https://codehealth.canine.dev/dimensions/D19"},{"id":"D21","name":"Naming Consistency","shortDescription":{"text":"Naming Consistency"},"helpUri":"https://codehealth.canine.dev/dimensions/D21"},{"id":"D28","name":"Secrets (history)","shortDescription":{"text":"Secrets (history)"},"helpUri":"https://codehealth.canine.dev/dimensions/D28","relationships":[{"target":{"id":"CWE-798","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-259","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-798","CWE-259"]}},{"id":"D29","name":"Static Analysis (SAST)","shortDescription":{"text":"Static Analysis (SAST)"},"helpUri":"https://codehealth.canine.dev/dimensions/D29","relationships":[{"target":{"id":"CWE-79","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-89","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-78","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-94","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]},{"target":{"id":"CWE-77","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}},"kinds":["relevant"]}],"properties":{"cwe":["CWE-79","CWE-89","CWE-78","CWE-94","CWE-77"]}},{"id":"D34","name":"Knowledge Freshness","shortDescription":{"text":"Knowledge Freshness"},"helpUri":"https://codehealth.canine.dev/dimensions/D34"},{"id":"D35","name":"Change Coupling","shortDescription":{"text":"Change Coupling"},"helpUri":"https://codehealth.canine.dev/dimensions/D35"}]}},"results":[{"ruleId":"D1","level":"warning","message":{"text":"fpp.generateFromPhpValueFor (cyclomatic 31): fpp.generateFromPhpValueFor has cyclomatic complexity 31 (threshold 15). To reduce it, separate the cases: extract each independent branch into its own named function, and where the body has guards that only reject input, fold those into early returns at the top."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Functions/fpp.php"},"region":{"startLine":511}}}],"partialFingerprints":{"codehealthFindingId/v1":"9c3c919e5d657702f56fcb64b4402e55d82d00b63092c10827a075cab8fdcde9"}},{"ruleId":"D1","level":"warning","message":{"text":"fpp.generateToArrayBodyFor (cyclomatic 22): fpp.generateToArrayBodyFor has cyclomatic complexity 22 (threshold 15). To reduce it, separate the cases: extract each independent branch into its own named function, and where the body has guards that only reject input, fold those into early returns at the top."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Functions/fpp.php"},"region":{"startLine":650}}}],"partialFingerprints":{"codehealthFindingId/v1":"c85e77d33b2e77b2ddf0566f7ed8627cecfd2123a64aab5de5cc2c5eec58d3f3"}},{"ruleId":"D2","level":"warning","message":{"text":"fpp.generateFromPhpValueFor (cognitive 103): fpp.generateFromPhpValueFor has cognitive complexity 103 (threshold 15). Drivers by points: if/else 68, loops 32, boolean chains 2, match/switch 1 (nesting depth added 78). The drivers above price the dispatch low by construction \u2014 a dispatch is charged once however many cases it lists, while each branch inside an arm is charged in full \u2014 so most of this count is what the case bodies hold, and the arms are where it can be reduced. To reduce it, keep the dispatch but shrink the arms: move each non-trivial case body into its own named function (or onto the value being matched) so the dispatch reads one line per case, and group related cases into a sub-dispatch. Keep every case explicit, and make the behaviour for cases you do not list a deliberate choice rather than an accident."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Functions/fpp.php"},"region":{"startLine":511}}}],"partialFingerprints":{"codehealthFindingId/v1":"555347f5ee4b4f6c13700172c559cf409aecc8b282ecb6a05a6fa669cb7cc901"}},{"ruleId":"D2","level":"warning","message":{"text":"fpp.generateToArrayBodyFor (cognitive 72): fpp.generateToArrayBodyFor has cognitive complexity 72 (threshold 15). Drivers by points: if/else 55, loops 16, match/switch 1 (nesting depth added 56). The drivers above price the dispatch low by construction \u2014 a dispatch is charged once however many cases it lists, while each branch inside an arm is charged in full \u2014 so most of this count is what the case bodies hold, and the arms are where it can be reduced. To reduce it, keep the dispatch but shrink the arms: move each non-trivial case body into its own named function (or onto the value being matched) so the dispatch reads one line per case, and group related cases into a sub-dispatch. Keep every case explicit, and make the behaviour for cases you do not list a deliberate choice rather than an accident."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Functions/fpp.php"},"region":{"startLine":650}}}],"partialFingerprints":{"codehealthFindingId/v1":"081b26ae27d2d346338cf608c4bc6ef0359cb26f8ff2e6642f59a819b85c13ba"}},{"ruleId":"D2","level":"warning","message":{"text":"Data.buildSubType (cognitive 17): Data.buildSubType has cognitive complexity 17 (threshold 15). Drivers by points: if/else 13, ternaries 2, boolean chains 1, loops 1 (nesting depth added 2). To reduce it, split the body: most of this score is breadth rather than depth \u2014 checks laid out side by side rather than stacked \u2014 so group the statements between the checks into named steps and move each step into its own function. Some of it IS depth: where a check sits inside another whose only job is to reach it, merge the two into one condition, and where an else follows a branch that already returns, drop the trailing else and let the rest of the body continue at one level."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Data.php"},"region":{"startLine":289}}}],"partialFingerprints":{"codehealthFindingId/v1":"45324d5bc731c904d3a283f0a3cac3312d0fa460881e70f41f4dd655548c47e3"}},{"ruleId":"D3","level":"warning","message":{"text":"TooManyMethods: basic_parser: TooManyMethods \u2014 34 methods. To reduce it, group the members that share the same data into a smaller type of their own and delegate to it, so no single type carries every responsibility."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Functions/basic_parser.php"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"67fbbc9752aabeed84b5da8d9b64b2d025b521b82e260b1aca8634a1ff35f6b6"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): src/Functions/fpp_parser.php:95-105 | src/Functions/fpp_parser.php:134-144 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/Functions/fpp_parser.php:95\u0060 it begins part-way through the construct above it, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Functions/fpp_parser.php"},"region":{"startLine":95}}}],"partialFingerprints":{"codehealthFindingId/v1":"0494715d444844e6b8980e81e8062c3f1a69cc323de926aadff90bdcdb91ff43"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (11 lines \u00D7 2): src/Type/Command.php:128-138 | src/Type/Event.php:124-134 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Command.php"},"region":{"startLine":128}}}],"partialFingerprints":{"codehealthFindingId/v1":"515eb85ea0080552f7e06e3f732763834b597d857a145a7fe113448e1dcad3f1"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (10 lines \u00D7 2): src/Type/Guid.php:105-114 | src/Type/Uuid.php:103-112 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once. The matched lines also transfer control out of the body holding them, which cannot survive a move into a called unit unchanged: have the extracted unit return that decision and let each site act on it."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Guid.php"},"region":{"startLine":105}}}],"partialFingerprints":{"codehealthFindingId/v1":"63e891e8f145a80d4d63d2534ee0915ee6fd1a8b9401531f35a23dbf7bf97cc2"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 4): src/Type/Bool_.php:72-83 | src/Type/Float_.php:73-81 | src/Type/Int_.php:73-81 | src/Type/String_.php:73-81 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/Type/Bool_.php:72\u0060 it begins part-way through the construct above it, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Bool_.php"},"region":{"startLine":72}}}],"partialFingerprints":{"codehealthFindingId/v1":"1105831a3dcb6ee7d703bdbd8beec4ad8220e7661eba4936de938fee7d644aae"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 3): src/Type/Command.php:392-400 | src/Type/Data.php:295-303 | src/Type/Event.php:415-423 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/Type/Command.php:392\u0060 it does not close everything it opens, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Command.php"},"region":{"startLine":392}}}],"partialFingerprints":{"codehealthFindingId/v1":"5410e282308587e48a69d7906e12398670c354ab069ff05d5ba7288b6727c509"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): src/Type/Command.php:76-84 | src/Type/Event.php:80-88 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/Type/Command.php:76\u0060 it does not close everything it opens, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Command.php"},"region":{"startLine":76}}}],"partialFingerprints":{"codehealthFindingId/v1":"132c81184bb6b51eda2250326eaef3894902408bca1895c1c6d96d8c2e3ec0bc"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): src/Type/Command.php:99-107 | src/Type/Event.php:94-102 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/Type/Command.php:99\u0060 it begins part-way through the construct above it, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Command.php"},"region":{"startLine":99}}}],"partialFingerprints":{"codehealthFindingId/v1":"e33c221852f8371c7d46d484eb350849dd8e4c53872b7e1f88b424e81ca3543d"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (9 lines \u00D7 2): src/Type/Guid.php:73-81 | src/Type/Uuid.php:73-81 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Guid.php"},"region":{"startLine":73}}}],"partialFingerprints":{"codehealthFindingId/v1":"82ffefb5824ccbc3356b2c77fdda595e5896025858388b0381624e9f4f82a5d1"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (8 lines \u00D7 2): src/Functions/fpp.php:542-549 | src/Functions/fpp.php:581-588 \u2014 both copies are in the same file, so extract the block into one function there and call it from each site \u2014 the copies drift apart the first time only one of them is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/Functions/fpp.php:542\u0060 it does not close everything it opens, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that. The matched lines also transfer control out of the body holding them, which cannot survive a move into a called unit unchanged: have the extracted unit return that decision and let each site act on it. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Functions/fpp.php"},"region":{"startLine":542}}}],"partialFingerprints":{"codehealthFindingId/v1":"89512b923e0c89e89d4997b4d89bfe00b72ca9389fff2f5df1a7ec54093d68d7"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 11): src/Type/Bool_.php:52-58 | src/Type/Command.php:64-70 | src/Type/Data.php:245-251 | src/Type/Data.php:263-269 | src/Type/Enum.php:55-61 | src/Type/Event.php:66-72 | src/Type/Float_.php:52-58 | src/Type/Guid.php:52-58 | src/Type/Int_.php:52-58 | src/Type/String_.php:52-58 | src/Type/Uuid.php:52-58 \u2014 there are 11 copies across 10 file(s) \u2014 more copies than files, so at least one file holds the block twice. Extract it once into a single shared function every call site can reach and call it from all 11 sites; resolving a subset leaves the remainder to drift apart."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Bool_.php"},"region":{"startLine":52}}}],"partialFingerprints":{"codehealthFindingId/v1":"a6d5cd32acc880a9817f7f9ea24028a05ce6c2acae6af5b4bd57adb04068f376"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (7 lines \u00D7 3): src/Type/Float_.php:88-94 | src/Type/Int_.php:88-94 | src/Type/String_.php:88-94 \u2014 the copies sit in sibling files of one directory: extract the block into a single shared function in that directory and call it from each site, so a change lands once."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Float_.php"},"region":{"startLine":88}}}],"partialFingerprints":{"codehealthFindingId/v1":"6ad23532fade19bc36ab468f2fee3c5f94c1301f1b87db6299f8c867de31e862"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 14): src/Functions/fpp_parser.php:70-74 | src/Type/Bool_.php:51-55 | src/Type/Command.php:63-67 | src/Type/Data.php:244-248 | src/Type/Data.php:262-266 | src/Type/Enum.php:54-58 | src/Type/Event.php:65-69 | src/Type/Float_.php:51-55 | src/Type/Guid.php:51-55 | src/Type/Int_.php:51-55 | src/Type/Marker.php:51-55 | src/Type/Marker.php:59-63 | src/Type/String_.php:51-55 | src/Type/Uuid.php:51-55 \u2014 there are 14 copies across 12 file(s) \u2014 more copies than files, so at least one file holds the block twice. Extract it once into a single shared function every call site can reach and call it from all 14 sites; resolving a subset leaves the remainder to drift apart. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/Type/Bool_.php:51\u0060 it does not close everything it opens, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Functions/fpp_parser.php"},"region":{"startLine":70}}}],"partialFingerprints":{"codehealthFindingId/v1":"2fda61e644154a7ab81168fe3752d311a8f7bb6bb508720fb4b8c47324717e10"}},{"ruleId":"D4","level":"warning","message":{"text":"Duplicated block (5 lines \u00D7 4): src/Functions/fpp_parser.php:56-61 | src/Functions/fpp_parser.php:64-69 | src/Functions/fpp_parser.php:84-88 | src/Functions/fpp_parser.php:113-117 \u2014 all 4 copies are in the same file, so extract the block into one function there and call it from every one of those sites \u2014 resolving only two of them leaves the rest to drift apart the first time one is edited. Read the line range as the matched WINDOW rather than a finished unit: at \u0060src/Functions/fpp_parser.php:56\u0060 it does not close everything it opens, so those exact lines cannot be lifted as they stand \u2014 widen the region to the smallest complete statement or declaration that contains it, and extract that. Note that the copies do not run to the end of the range shown: their LAST lines are different code, not the same code under different names \u2014 the matched region ends inside that line. Extract the lines above it, and read the last line of each site separately."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Functions/fpp_parser.php"},"region":{"startLine":56}}}],"partialFingerprints":{"codehealthFindingId/v1":"7334198f20c453e0f3244ff9960b81f5044b1b4abdcd70c15a83d988d5d7d2e4"}},{"ruleId":"D16","level":"warning","message":{"text":"dormant codebase \u2014 no living knowledge left to concentrate: All 12 significant source file(s) were last meaningfully changed so long ago that no living knowledge remains \u2014 nothing since has been substantial enough to re-establish ownership (a broad, mechanical sweep that touches many files shallowly does not count, and neither does no activity at all). There is no concentration to measure, so the bus factor is not scored. This is not a clean bill: nobody currently holds working knowledge of this code (see D34 Knowledge Freshness)."},"locations":[],"partialFingerprints":{"codehealthFindingId/v1":"569d55ea5cb0330f13c125b289d07e5abdfcceac947a2c2645277937942e7d5f"}},{"ruleId":"D19","level":"note","message":{"text":"The \u0027Add FPP File Type\u0027 step lists keywords but does not show how to configure the File Watcher\u0027s output path or error handling (the clip truncates it).: In the clip region, add a sentence about setting the watcher\u0027s output path and what happens on an error."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"docs/PhpStorm-Integration.md"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"a418c1ca0c4af02e513aa1fa4ae545bed7747cc2e897888902a56be8cc700732"}},{"ruleId":"D19","level":"note","message":{"text":"The command message example uses \u0027RegisteredUser as registered-user\u0027 but the generated type is not shown in the text.: In the clip region, note that the generated command type property/method is shown and link to where it appears."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"docs/Messages.md"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"b81577e47a5fdc762010bb58431730264f9c3c11fadbb26a764e3095dcb29895"}},{"ruleId":"D29","level":"error","message":{"text":"A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."},"partialFingerprints":{"codehealthFindingId/v1":"d5b8f11381d61a58459ffc7c595fd52d09c03c711894a63a9578043d2338412b"},"taxa":[{"id":"CWE-829","toolComponent":{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d"}}]},{"ruleId":"D34","level":"error","message":{"text":"Orphaned knowledge: No living knowledge remains for this large file \u2014 its last meaningful change has decayed away; if it breaks, no one currently understands it. Schedule a read-through / add characterisation tests before it bites."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Functions/fpp.php"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"79ab3963bf0209e55be5a3a8f4d7a544a6c9bc9b5bd78cd448da08b8a92f3eb1"}},{"ruleId":"D34","level":"note","message":{"text":"Further orphaned files (smaller): 15 smaller file(s) also have no living knowledge \u2014 folded into the freshness score and metrics rather than listed individually (16 orphaned of 16 analysed files in total, counted over production source files of roughly 100 lines or more, excluding tests, vendored, generated and example/demo trees, largest first)."},"locations":[],"partialFingerprints":{"codehealthFindingId/v1":"ce861fd78f6935114d3a342cb90ad25870f984e1042954fcbbe27c0e23be3658"}},{"ruleId":"D35","level":"warning","message":{"text":"Change coupling clique: Bool_.php, Data.php, Float_.php, Guid.php, Int_.php, String_.php, Uuid.php: 7 files \u2014 \u0060src/Type/Bool_.php\u0060, \u0060src/Type/Data.php\u0060, \u0060src/Type/Float_.php\u0060, \u0060src/Type/Guid.php\u0060, \u0060src/Type/Int_.php\u0060, \u0060src/Type/String_.php\u0060, \u0060src/Type/Uuid.php\u0060 \u2014 all change together with no explicit dependency: a fully-connected co-change clique, not 21 separate couplings. They share one concern (thin parallel siblings over a common abstraction), so extract the shared part into ONE unit and the whole clique\u0027s coupling clears at once \u2014 you do not need to break each pair individually."},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"src/Type/Bool_.php"},"region":{"startLine":1}}}],"partialFingerprints":{"codehealthFindingId/v1":"a2b061321274257938cd6c4b45d5c964b19bbac049a426b3e402353347e15fe8"}}],"taxonomies":[{"name":"CWE","guid":"c3a2b1d0-7f3e-4b2a-9c1d-5e6f7a8b9c0d","organization":"MITRE","informationUri":"https://cwe.mitre.org/","isComprehensive":false,"shortDescription":{"text":"The MITRE Common Weakness Enumeration (CWE)."},"taxa":[{"id":"CWE-259","guid":"ae9ad959-fbb6-9d5e-892d-3dca66da0b69","name":"Use of Hard-coded Password","shortDescription":{"text":"Use of Hard-coded Password"},"helpUri":"https://cwe.mitre.org/data/definitions/259.html"},{"id":"CWE-77","guid":"332c8ade-6612-9f56-a06b-d8d90b1a8750","name":"Command Injection","shortDescription":{"text":"Command Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/77.html"},{"id":"CWE-78","guid":"2e31ceaf-c7ae-2e5e-9661-cfb1362789cf","name":"OS Command Injection","shortDescription":{"text":"OS Command Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/78.html"},{"id":"CWE-79","guid":"fd45580b-e8c4-fc5e-8c2f-aa8fab0b4dbf","name":"Cross-site Scripting (XSS)","shortDescription":{"text":"Cross-site Scripting (XSS)"},"helpUri":"https://cwe.mitre.org/data/definitions/79.html"},{"id":"CWE-798","guid":"5e8f057d-fee3-995a-a0cb-9fc5b0d174d1","name":"Use of Hard-coded Credentials","shortDescription":{"text":"Use of Hard-coded Credentials"},"helpUri":"https://cwe.mitre.org/data/definitions/798.html"},{"id":"CWE-829","guid":"13c33925-97fb-5a5e-b40c-56d328b8a4d7","name":"CWE-829","shortDescription":{"text":"CWE-829"},"helpUri":"https://cwe.mitre.org/data/definitions/829.html"},{"id":"CWE-89","guid":"6d08fdad-37eb-c150-bbf0-d7d946863407","name":"SQL Injection","shortDescription":{"text":"SQL Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/89.html"},{"id":"CWE-94","guid":"75e7f50c-6c2f-dd52-bf40-bf6c52b861fd","name":"Code Injection","shortDescription":{"text":"Code Injection"},"helpUri":"https://cwe.mitre.org/data/definitions/94.html"}]}],"properties":{"codehealthPublication":{"public":true,"notice":"This is the PUBLIC form of this artifact. Findings are listed in full, but the details of SECURITY findings \u2014 which rule fired, in which file, on which line, and how to fix it \u2014 are deliberately withheld, and any secret-scanner results are excluded entirely. Where detail is absent here it was REMOVED FOR PUBLICATION; it is not missing from the analysis. The complete artifact is available from the repository owner.","securityFindingsRedacted":1,"secretScannerRunsExcluded":0}},"redactionTokens":["A security finding was recorded here. Its details are withheld on the public artifact \u2014 ask the repository owner for the full report."]}]}