mirror of
https://github.com/nextcloud/documentation.git
synced 2025-10-26 11:18:02 +00:00
Add leading slashes to class in examples
Leading slashes were missing from 'class' in the object storage configuration examples (i.e. \\OC\\...) though they were called out correctly above the examples.
This commit is contained in:
parent
4ebfdca4bc
commit
10002f5900
@ -60,7 +60,7 @@ The class to be used is :code:`\\OC\\Files\\ObjectStore\\Swift`
|
||||
::
|
||||
|
||||
'objectstore' => array(
|
||||
'class' => 'OC\\Files\\ObjectStore\\Swift',
|
||||
'class' => '\\OC\\Files\\ObjectStore\\Swift',
|
||||
'arguments' => array(
|
||||
'username' => 'username',
|
||||
'password' => 'Secr3tPaSSWoRdt7',
|
||||
@ -91,7 +91,7 @@ The class to be used is :code:`\\OC\\Files\\ObjectStore\\S3`
|
||||
::
|
||||
|
||||
'objectstore' => array(
|
||||
'class' => 'OC\\Files\\ObjectStore\\S3',
|
||||
'class' => '\\OC\\Files\\ObjectStore\\S3',
|
||||
'arguments' => array(
|
||||
'bucket' => 'nextcloud',
|
||||
'autocreate' => true,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user