Checkstyle: LowerCaseConstant

This commit is contained in:
Felix Moeller 2012-10-23 08:20:17 +02:00
parent 2d61f03452
commit ddfcc96ab5
2 changed files with 4 additions and 4 deletions

View File

@ -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';

View File

@ -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);