Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function execute(string $localBasePath, FileReader $fileReader, VaultLayoutInterface $vaultLayout): bool |
||
38 | { |
||
39 | $absolutePath = $localBasePath . $this->relativePath; |
||
40 | $time = FilesystemUtility::buildTime($this->mtime); |
||
41 | |||
42 | exec("touch -m -d '{$time}' {$absolutePath} 2>&1", $output, $exitCode); |
||
43 | |||
44 | return $exitCode === 0; |
||
45 | } |
||
46 | |||
57 |