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.
