I was coding a bit of PHP and I was looking at some OOP examples off a website, and I noticed that when they declared a new object like:
$object = new object();
Instead of:
$object = new object;
I was just wondering, as far as syntax goes is there any real difference between those lines of code?
