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';
|
require_once 'lib/base.php';
|
||||||
|
|
||||||
|
|
|
@ -80,7 +80,7 @@ class OC_OCSClient{
|
||||||
}
|
}
|
||||||
$url=OC_OCSClient::getAppStoreURL().'/content/categories';
|
$url=OC_OCSClient::getAppStoreURL().'/content/categories';
|
||||||
$xml=OC_OCSClient::getOCSresponse($url);
|
$xml=OC_OCSClient::getOCSresponse($url);
|
||||||
if($xml==FALSE) {
|
if($xml==false) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
$data=simplexml_load_string($xml);
|
$data=simplexml_load_string($xml);
|
||||||
|
@ -122,8 +122,8 @@ class OC_OCSClient{
|
||||||
$apps=array();
|
$apps=array();
|
||||||
$xml=OC_OCSClient::getOCSresponse($url);
|
$xml=OC_OCSClient::getOCSresponse($url);
|
||||||
|
|
||||||
if($xml==FALSE) {
|
if($xml==false) {
|
||||||
return NULL;
|
return null;
|
||||||
}
|
}
|
||||||
$data=simplexml_load_string($xml);
|
$data=simplexml_load_string($xml);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue