1 | <?php |
||
13 | class SuffixWithCurrentTimestampStrategy extends AbstractStrategy |
||
14 | { |
||
15 | public function __construct() |
||
19 | |||
20 | /** |
||
21 | * @var int |
||
22 | */ |
||
23 | private $currentTimeStamp; |
||
24 | |||
25 | /** |
||
26 | * @param int $currentTimeStamp |
||
27 | */ |
||
28 | public function setCurrentTimeStamp($currentTimeStamp) |
||
32 | |||
33 | /** |
||
34 | * @return int |
||
35 | * @throws RuntimeException |
||
36 | */ |
||
37 | public function getCurrentTimeStamp() |
||
47 | |||
48 | /** |
||
49 | * @throws RuntimeException |
||
50 | */ |
||
51 | public function execute() |
||
67 | } |