mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
fix: when retry.json does not exists
This commit is contained in:
@ -60,7 +60,9 @@ final class TempRepository
|
|||||||
*/
|
*/
|
||||||
private function all(): array
|
private function all(): array
|
||||||
{
|
{
|
||||||
$contents = file_get_contents(self::FOLDER.'/'.$this->filename.'.json');
|
$path = self::FOLDER.'/'.$this->filename.'.json';
|
||||||
|
|
||||||
|
$contents = file_exists($path) ? file_get_contents($path) : '{}';
|
||||||
|
|
||||||
assert(is_string($contents));
|
assert(is_string($contents));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user