Checkstyle: LowerCaseConstant
This commit is contained in:
parent
2d61f03452
commit
ddfcc96ab5
|
@ -21,7 +21,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
$RUNTIME_NOAPPS = TRUE; //no apps, yet
|
||||
$RUNTIME_NOAPPS = true; //no apps, yet
|
||||
|
||||
require_once 'lib/base.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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue