Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
45 | public function setWasRun($datetime = 'now', $setIfNotExist = true): void |
||
46 | { |
||
47 | if (!file_exists($this->filePath)) { |
||
48 | if (false === $setIfNotExist) { |
||
49 | return; |
||
50 | } |
||
51 | file_put_contents($this->filePath, ''); |
||
52 | } |
||
53 | |||
54 | touch($this->filePath, (new DateTime($datetime))->getTimestamp()); |
||
55 | } |
||
65 |