summaryrefslogtreecommitdiffstats
path: root/lib/ocsclient.php
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-10-23 08:20:17 +0200
committerFelix Moeller <mail@felixmoeller.de>2012-10-23 08:20:17 +0200
commitddfcc96ab5e72e90bcb0858ac92e617e6d70a993 (patch)
tree2f003d75b529f45a7ef7861d540c8915495d115c /lib/ocsclient.php
parent2d61f0345297a92d23751d3228b74c6dca94d1e5 (diff)
downloadnextcloud-server-ddfcc96ab5e72e90bcb0858ac92e617e6d70a993.tar.gz
nextcloud-server-ddfcc96ab5e72e90bcb0858ac92e617e6d70a993.zip
Checkstyle: LowerCaseConstant
Diffstat (limited to 'lib/ocsclient.php')
-rw-r--r--lib/ocsclient.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ocsclient.php b/lib/ocsclient.php
index 4d4937377b3..32c2cfe6e48 100644
--- a/lib/ocsclient.php
+++ b/lib/ocsclient.php
@@ -80,7 +80,7 @@ class OC_OCSClient{
}
$url=OC_OCSClient::getAppStoreURL().'/content/categories';
$xml=OC_OCSClient::getOCSresponse($url);
- if($xml==FALSE) {
+ if($xml==false) {
return null;
}
$data=simplexml_load_string($xml);
@@ -122,8 +122,8 @@ class OC_OCSClient{
$apps=array();
$xml=OC_OCSClient::getOCSresponse($url);
- if($xml==FALSE) {
- return NULL;
+ if($xml==false) {
+ return null;
}
$data=simplexml_load_string($xml);