| 1 | <?php |
||
| 7 | class TouchOperation implements OperationInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $relativePath; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var int |
||
| 16 | */ |
||
| 17 | protected $mtime; |
||
| 18 | |||
| 19 | public function __construct(string $relativePath, int $mtime) |
||
| 24 | |||
| 25 | public function getRelativePath(): string |
||
| 29 | |||
| 30 | public function getMtime(): int |
||
| 34 | |||
| 35 | public function execute(string $localBasePath, ConnectionAdapterInterface $connection): bool |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @codeCoverageIgnore |
||
| 44 | */ |
||
| 45 | public function __toString(): string |
||
| 49 | } |
||
| 50 |