Skip to content

Commit c66450a

Browse files
authored
fix: camel case
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
1 parent 44a08f8 commit c66450a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/private/App/AppStore/Fetcher/AppFetcher.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,11 @@ public function setVersion(string $version, string $fileName = 'apps.json', bool
151151
public function get($allowUnstable = false): array {
152152
$allowPreReleases = $allowUnstable || $this->getChannel() === 'beta' || $this->getChannel() === 'daily' || $this->getChannel() === 'git';
153153

154-
$appstoreenabled = $this->config->getSystemValueBool('appstoreenabled', true);
155-
$internetavailable = $this->config->getSystemValueBool('has_internet_connection', true);
154+
$appStoreEnabled = $this->config->getSystemValueBool('appstoreenabled', true);
155+
$internetAvailable = $this->config->getSystemValueBool('has_internet_connection', true);
156156
$isDefaultAppStore = $this->config->getSystemValueString('appstoreurl', self::APP_STORE_URL) === self::APP_STORE_URL;
157157

158-
if (!$appstoreenabled || (!$internetavailable && $isDefaultAppStore)) {
158+
if (!$appStoreEnabled || (!$internetAvailable && $isDefaultAppStore)) {
159159
return [];
160160
}
161161

0 commit comments

Comments
 (0)