Arrays in PHP 7

Turns out it’s not good to instantiate an array by using: $foo = '';. PHP does not appreciate or tolerate such things. So we have to change them to $foo = array(); in order for things to work properly.