Skip to content

Commit

Permalink
add enableTimestampsOnUnixListings option to FtpFilesystem
Browse files Browse the repository at this point in the history
  • Loading branch information
handcode committed Feb 17, 2020
1 parent 44463fc commit ce8e253
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/FtpFilesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ class FtpFilesystem extends Filesystem
* @var integer
*/
public $transferMode;
/**
* @var bool
*/
public $enableTimestampsOnUnixListings = false;

/**
* @inheritdoc
Expand Down Expand Up @@ -98,6 +102,7 @@ protected function prepareAdapter()
'permPublic',
'passive',
'transferMode',
'enableTimestampsOnUnixListings',
] as $name) {
if ($this->$name !== null) {
$config[$name] = $this->$name;
Expand Down

0 comments on commit ce8e253

Please sign in to comment.