ArrayableInterface.php
1 day ago
HydrateableInterface.php
1 day ago
ShutdownableInterface.php
1 day ago
TransientInterface.php
1 day ago
TransientInterface.php
32 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Framework\Interfaces; |
| 4 | |
| 5 | interface TransientInterface |
| 6 | { |
| 7 | |
| 8 | |
| 9 | |
| 10 | public function getTransientName(); |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | public function getExpiryTime(); |
| 16 | |
| 17 | |
| 18 | |
| 19 | |
| 20 | public function setTransient(); |
| 21 | |
| 22 | |
| 23 | |
| 24 | |
| 25 | public function getTransient(); |
| 26 | |
| 27 | |
| 28 | |
| 29 | |
| 30 | public function deleteTransient(); |
| 31 | } |
| 32 |