mirror of
https://github.com/pestphp/pest.git
synced 2026-03-10 09:47:23 +01:00
Adjusts for Collision 8.4
This commit is contained in:
@ -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,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user