Adjusts for Collision 8.4

This commit is contained in:
Nuno Maduro
2024-08-03 16:36:01 +01:00
parent 63ba117b33
commit 6fb1133d52
6 changed files with 139 additions and 33 deletions

View File

@ -444,26 +444,14 @@ trait Testable
}
/**
* The latest printable test case notes.
* The printable test case method context.
*/
public static function getPrintableTestCaseMethodNotes(): array
public static function getPrintableContext(): array
{
return self::$__latestNotes;
}
/**
* The latest printable test case issues.
*/
public static function getPrintableTestCaseMethodIssues(): array
{
return self::$__latestIssues;
}
/**
* The latest printable test case PRs.
*/
public static function getPrintableTestCaseMethodPrs(): array
{
return self::$__latestPrs;
return [
'issues' => self::$__latestIssues,
'prs' => self::$__latestPrs,
'notes' => self::$__latestNotes,
];
}
}