fix: api.php 설정이 전혀 동작하지 않던 문제 수정

This commit is contained in:
2022-04-02 01:14:46 +09:00
parent b24c4806f5
commit 36d7e22040
3 changed files with 27 additions and 14 deletions
+2 -3
View File
@@ -3,10 +3,9 @@ namespace sammo;
class APICacheResult{
function __construct(
public ?\DateTimeInterface $lastModified,
public ?string $etag,
public ?\DateTimeInterface $lastModified = null,
public ?string $etag = null,
)
{
}
}