Skip to content

Commit d31afc4

Browse files
authored
Merge pull request #44 from handcode/master
add enableTimestampsOnUnixListings option to FtpFilesystem
2 parents 44463fc + ce8e253 commit d31afc4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/FtpFilesystem.php

+5
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ class FtpFilesystem extends Filesystem
6262
* @var integer
6363
*/
6464
public $transferMode;
65+
/**
66+
* @var bool
67+
*/
68+
public $enableTimestampsOnUnixListings = false;
6569

6670
/**
6771
* @inheritdoc
@@ -98,6 +102,7 @@ protected function prepareAdapter()
98102
'permPublic',
99103
'passive',
100104
'transferMode',
105+
'enableTimestampsOnUnixListings',
101106
] as $name) {
102107
if ($this->$name !== null) {
103108
$config[$name] = $this->$name;

0 commit comments

Comments
 (0)