Menu:

Delicious!

arrow Drawing with jquery

arrow Mobile applications RIP

arrow Lighthttpd tuning

arrow Kännykästä WLAN tukiasema

arrow MySQL advanced performance tips

 left_thumb_25102008-002.jpgleft_thumb_24102008-032.jpgleft_thumb_24102008-015.jpgleft_thumb_24102008-013.jpgleft_thumb_20092008.jpg 

Dezign
(4 Janv, 2007)

MidCOM 3 coding with Zend Eclipse

Posted on 2008-04-05 16:47:28 EEST.

Lately I've doing some developement of MidCOM 3.0 with Zend Studio for Eclipse. Coding conventions are important to follow in order to maintain code readibility.

So far I've been able to configure my Zend editor but one issue persist.

Zend Studio makes

if($something)
{
return null;
}else
{
return null;
}

 

Right way

if($something)
{
return null;
}
else
{
return null;
}

But in the whole it's a very usable IDE. Code formatting settings that I use can be downloaded here.

Back