| 1 | <?php |
||
| 5 | class TouchOperation implements OperationInterface |
||
| 6 | { |
||
| 7 | protected $absolutePath; |
||
| 8 | protected $mtime; |
||
| 9 | |||
| 10 | public function __construct(string $absolutePath, int $mtime) |
||
| 15 | |||
| 16 | public function getAbsolutePath(): string |
||
| 20 | |||
| 21 | public function getMtime(): int |
||
| 25 | |||
| 26 | public function execute(): bool |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @codeCoverageIgnore |
||
| 33 | */ |
||
| 34 | public function __toString(): string |
||
| 38 | } |
||
| 39 |