Change default value for mode to FTP_ASCII (in order to have the same default value with the constructor of Ftp.php)
This commit is contained in:
parent
9078e8e667
commit
2d0d6d830d
|
@ -52,7 +52,7 @@ class FtpAdapterFactory implements AdapterFactoryInterface
|
||||||
->scalarNode('password')->defaultNull()->end()
|
->scalarNode('password')->defaultNull()->end()
|
||||||
->booleanNode('passive')->defaultFalse()->end()
|
->booleanNode('passive')->defaultFalse()->end()
|
||||||
->booleanNode('create')->defaultFalse()->end()
|
->booleanNode('create')->defaultFalse()->end()
|
||||||
->scalarNode('mode')->defaultValue(FTP_BINARY)->end()
|
->scalarNode('mode')->defaultValue(FTP_ASCII)->end()
|
||||||
->end()
|
->end()
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user