| Total Complexity | 4 | 
| Total Lines | 37 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 14 | trait DiskRead  | 
            ||
| 15 | { | 
            ||
| 16 | /**  | 
            ||
| 17 | * @var FilesystemAdapter|null  | 
            ||
| 18 | */  | 
            ||
| 19 | protected $sourceDisk = null;  | 
            ||
| 20 | |||
| 21 | /**  | 
            ||
| 22 | * @var string  | 
            ||
| 23 | */  | 
            ||
| 24 | protected $sourceDiskPath = '';  | 
            ||
| 25 | |||
| 26 | public function getSourceDisk(): ?FilesystemAdapter  | 
            ||
| 27 |     { | 
            ||
| 28 | return $this->sourceDisk;  | 
            ||
| 29 | }  | 
            ||
| 30 | |||
| 31 | public function setSourceDisk(?FilesystemAdapter $sourceDisk): self  | 
            ||
| 32 |     { | 
            ||
| 33 | $this->sourceDisk = $sourceDisk;  | 
            ||
| 34 | |||
| 35 | return $this;  | 
            ||
| 36 | }  | 
            ||
| 37 | |||
| 38 | public function setSourceDiskPath(string $sourceDiskPath): self  | 
            ||
| 43 | }  | 
            ||
| 44 | |||
| 45 | public function getSourceDiskPath(): string  | 
            ||
| 48 | }  | 
            ||
| 49 | |||
| 50 | abstract public function slashPath(string $path) : string;  | 
            ||
| 51 | }  | 
            ||
| 52 |