From d5f80a38f6ca43270be875a08b664f41ce1b5ecd Mon Sep 17 00:00:00 2001 From: Alexey Rogachev Date: Tue, 6 Feb 2024 14:07:56 +0600 Subject: [PATCH] Remove unused method --- src/ConcurrentStorageTrait.php | 5 ----- src/FileStorageInterface.php | 2 -- 2 files changed, 7 deletions(-) diff --git a/src/ConcurrentStorageTrait.php b/src/ConcurrentStorageTrait.php index 9ba1196..d90a019 100644 --- a/src/ConcurrentStorageTrait.php +++ b/src/ConcurrentStorageTrait.php @@ -10,11 +10,6 @@ trait ConcurrentStorageTrait { private ?int $currentFileUpdatedAt = null; - public function getFileUpdatedAt(): int - { - return $this->storage->getFileUpdatedAt(); - } - private function loadInternal(FileStorageInterface $storage): void { try { diff --git a/src/FileStorageInterface.php b/src/FileStorageInterface.php index 2c5d2d9..f8f4c7c 100644 --- a/src/FileStorageInterface.php +++ b/src/FileStorageInterface.php @@ -7,6 +7,4 @@ interface FileStorageInterface { public function load(): void; - - public function getFileUpdatedAt(): int; }