summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpierreozoux <pierre@ozoux.net>2020-08-25 17:44:16 +0200
committerpierreozoux <pierre@ozoux.net>2020-08-28 15:50:42 +0200
commit3f7fef7f8ff9ff453a15b80fb369ef701d6a6874 (patch)
tree008cdeea89b8adad52b7f790d4038d1d93967b0c
parent488378f8e88071a68bec5c0f846c294fb61ddd76 (diff)
Change quotes for consistency.quote-consistency
-rw-r--r--.config/apps.config.php14
-rw-r--r--.config/autoconfig.php26
2 files changed, 20 insertions, 20 deletions
diff --git a/.config/apps.config.php b/.config/apps.config.php
index a4bed833..4c37f72a 100644
--- a/.config/apps.config.php
+++ b/.config/apps.config.php
@@ -1,15 +1,15 @@
<?php
$CONFIG = array (
- "apps_paths" => array (
+ 'apps_paths' => array (
0 => array (
- "path" => OC::$SERVERROOT."/apps",
- "url" => "/apps",
- "writable" => false,
+ 'path' => OC::$SERVERROOT.'/apps',
+ 'url' => '/apps',
+ 'writable' => false,
),
1 => array (
- "path" => OC::$SERVERROOT."/custom_apps",
- "url" => "/custom_apps",
- "writable" => true,
+ 'path' => OC::$SERVERROOT.'/custom_apps',
+ 'url' => '/custom_apps',
+ 'writable' => true,
),
),
);
diff --git a/.config/autoconfig.php b/.config/autoconfig.php
index 5bb85d42..f01f18d6 100644
--- a/.config/autoconfig.php
+++ b/.config/autoconfig.php
@@ -3,25 +3,25 @@
$autoconfig_enabled = false;
if (getenv('SQLITE_DATABASE')) {
- $AUTOCONFIG["dbtype"] = "sqlite";
- $AUTOCONFIG["dbname"] = getenv('SQLITE_DATABASE');
+ $AUTOCONFIG['dbtype'] = 'sqlite';
+ $AUTOCONFIG['dbname'] = getenv('SQLITE_DATABASE');
$autoconfig_enabled = true;
} elseif (getenv('MYSQL_DATABASE') && getenv('MYSQL_USER') && getenv('MYSQL_PASSWORD') && getenv('MYSQL_HOST')) {
- $AUTOCONFIG["dbtype"] = "mysql";
- $AUTOCONFIG["dbname"] = getenv('MYSQL_DATABASE');
- $AUTOCONFIG["dbuser"] = getenv('MYSQL_USER');
- $AUTOCONFIG["dbpass"] = getenv('MYSQL_PASSWORD');
- $AUTOCONFIG["dbhost"] = getenv('MYSQL_HOST');
+ $AUTOCONFIG['dbtype'] = 'mysql';
+ $AUTOCONFIG['dbname'] = getenv('MYSQL_DATABASE');
+ $AUTOCONFIG['dbuser'] = getenv('MYSQL_USER');
+ $AUTOCONFIG['dbpass'] = getenv('MYSQL_PASSWORD');
+ $AUTOCONFIG['dbhost'] = getenv('MYSQL_HOST');
$autoconfig_enabled = true;
} elseif (getenv('POSTGRES_DB') && getenv('POSTGRES_USER') && getenv('POSTGRES_PASSWORD') && getenv('POSTGRES_HOST')) {
- $AUTOCONFIG["dbtype"] = "pgsql";
- $AUTOCONFIG["dbname"] = getenv('POSTGRES_DB');
- $AUTOCONFIG["dbuser"] = getenv('POSTGRES_USER');
- $AUTOCONFIG["dbpass"] = getenv('POSTGRES_PASSWORD');
- $AUTOCONFIG["dbhost"] = getenv('POSTGRES_HOST');
+ $AUTOCONFIG['dbtype'] = 'pgsql';
+ $AUTOCONFIG['dbname'] = getenv('POSTGRES_DB');
+ $AUTOCONFIG['dbuser'] = getenv('POSTGRES_USER');
+ $AUTOCONFIG['dbpass'] = getenv('POSTGRES_PASSWORD');
+ $AUTOCONFIG['dbhost'] = getenv('POSTGRES_HOST');
$autoconfig_enabled = true;
}
if ($autoconfig_enabled) {
- $AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
+ $AUTOCONFIG['directory'] = getenv('NEXTCLOUD_DATA_DIR') ?: '/var/www/html/data';
}