| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | public function __construct(string $uid, string $due, callable $func) |
||
| 45 | { |
||
| 46 | $this->uid = $uid; |
||
| 47 | $this->due = strtotime($due); |
||
| 48 | if (!$this->due) { |
||
| 49 | throw new \InvalidArgumentException( |
||
| 50 | sprintf('Cannot convert "%s" into a timestamp.', $due), |
||
| 51 | 1571567221 |
||
| 52 | ); |
||
| 53 | } |
||
| 54 | $this->func = $func; |
||
| 55 | } |
||
| 56 | |||
| 94 |