Lets take this code as an example:
class foo
{
private $segments = NULL;
}
$segments will be an array later.
The question:
Should i tell PHP that $segments is an array (private $segments = array(); ) or leave it as NULL?
What is better?
Thank you!