job-logger-trait.php
2 years ago
job-trait.php
2 years ago
self-execution-job-trait.php
2 years ago
time-based-trait.php
2 years ago
time-based-trait.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Jobs\Traits; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die(); |
| 9 | } |
| 10 | |
| 11 | trait Time_Based_Trait { |
| 12 | |
| 13 | private $timestamp = 0; |
| 14 | |
| 15 | public function set_timestamp( int $time ) { |
| 16 | $this->timestamp = $time; |
| 17 | } |
| 18 | |
| 19 | public function get_timestamp(): int { |
| 20 | return $this->timestamp; |
| 21 | } |
| 22 | |
| 23 | } |
| 24 |