Sfoglia il codice sorgente

Ajout d'un getter minutes

François Drouhard 1 anno fa
parent
commit
11adb11f87
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5 0
      src/Entity/Counter.php

+ 5 - 0
src/Entity/Counter.php

@@ -101,4 +101,9 @@ class Counter
 
         return $this;
     }
+
+    public function getMinutes(): int
+    {
+        return (int) filter_var($this->timeToLive, FILTER_SANITIZE_NUMBER_INT) ?? 0;
+    }
 }