I noticed lately that eclipse is suggesting me the use of constants TRUE and FALSE from core.php when returning true or false from a function.
In other words should I use
function misc ()
{
...
return true;
}
or
function misc ()
{
...
return TRUE;
}
I know they are the same thing because of the way these constants are defined in core.php
define ('TRUE', true);
define ('FALSE', false);
So if anyone could explain what's best practice I would really appreciate.