So I'm starting to use CodeIgniter and I'm reading through some of the tutorials. I can't help feeling my intent style is out-dated.

I use "The One True Brace Style".
Code:
if($bananas > 9) {
	$bananaparty = TRUE;
} else {
	echo "You do not have enough bananas for a banana party";
}
However, everybody else seems to be using the Allman style.

Code:
if($cats > 3)
{
	echo "Too many cats";
}
else
{
	echo "You have a normal amount of cats";
}
What do you use?