diff options
author | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2015-05-27 17:42:24 +0300 |
---|---|---|
committer | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2015-05-27 18:03:11 +0300 |
commit | 4239054383b078fff2a125841494f3aea72abd0c (patch) | |
tree | 571a954c208459eb03d85f00ea13c6faa9ae8f7e /lib/private/util.php | |
parent | 3de945d13da0016cd8c602867ff18a33c2534418 (diff) | |
download | nextcloud-server-4239054383b078fff2a125841494f3aea72abd0c.tar.gz nextcloud-server-4239054383b078fff2a125841494f3aea72abd0c.zip |
Add type hint for OC_Channel
Diffstat (limited to 'lib/private/util.php')
-rw-r--r-- | lib/private/util.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/util.php b/lib/private/util.php index c2f7d0d1a87..59408c0fc03 100644 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -393,6 +393,7 @@ class OC_Util { if (\OC::$server->getSystemConfig()->getValue('installed', false)) { $channel = \OC::$server->getAppConfig()->getValue('core', 'OC_Channel'); } else { + /** @var $OC_Channel string */ $channel = $OC_Channel; } |