Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
22 | public function __construct(\phpseclib\Net\SFTP $sftp, array $fileInfo, string $remotePath) |
||
23 | { |
||
24 | $this->sftp = $sftp; |
||
25 | $this->filename = $fileInfo['filename']; |
||
26 | $this->pathname = $remotePath . '/' . $fileInfo['filename']; |
||
27 | $this->size = $fileInfo['size']; |
||
28 | $this->lastModified = $fileInfo['mtime']; |
||
29 | } |
||
30 | |||
40 | } |