| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function __construct($ftpConnection, string $filename) |
||
| 18 | { |
||
| 19 | $this->ftpConnection = $ftpConnection; |
||
| 20 | $this->filename = $filename; |
||
| 21 | $this->pathname = $filename; |
||
| 22 | $this->size = ftp_size($ftpConnection, $filename); |
||
| 23 | $this->lastModified = ftp_mdtm($ftpConnection, $filename); |
||
| 24 | } |
||
| 25 | |||
| 33 | } |