| 1 | <?php  | 
            ||
| 8 | class SymlinkOperation implements OperationInterface  | 
            ||
| 9 | { | 
            ||
| 10 | /**  | 
            ||
| 11 | * @var string  | 
            ||
| 12 | */  | 
            ||
| 13 | protected $relativePath;  | 
            ||
| 14 | |||
| 15 | /**  | 
            ||
| 16 | * @var string  | 
            ||
| 17 | */  | 
            ||
| 18 | protected $relativeLinkTarget;  | 
            ||
| 19 | |||
| 20 | public function __construct(string $relativePath, string $relativeLinkTarget)  | 
            ||
| 25 | |||
| 26 | public function execute(string $localBasePath, FileReader $fileReader, VaultLayoutInterface $vaultLayout): bool  | 
            ||
| 33 | |||
| 34 | /**  | 
            ||
| 35 | * @codeCoverageIgnore  | 
            ||
| 36 | */  | 
            ||
| 37 | public function __toString(): string  | 
            ||
| 41 | }  | 
            ||
| 42 |