| 1 | <?php |
||
| 9 | class TouchOperation implements OperationInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $relativePath; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var float |
||
| 18 | */ |
||
| 19 | protected $mtime; |
||
| 20 | |||
| 21 | public function __construct(string $relativePath, float $mtime) |
||
| 26 | |||
| 27 | public function getRelativePath(): string |
||
| 31 | |||
| 32 | public function getMtime(): float |
||
| 36 | |||
| 37 | public function execute(string $localBasePath, FileReader $fileReader, VaultLayoutInterface $vaultLayout): bool |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @codeCoverageIgnore |
||
| 49 | */ |
||
| 50 | public function __toString(): string |
||
| 56 | } |
||
| 57 |