fix: APIHelper에서 tryCache가 잘못된 타입 지정인 버그

This commit is contained in:
2022-04-01 23:27:04 +09:00
parent 8ab79ad9f4
commit b24c4806f5
3 changed files with 15 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace sammo;
class APICacheResult{
function __construct(
public ?\DateTimeInterface $lastModified,
public ?string $etag,
)
{
}
}