Short Array Syntax
You can leave out array() and use []'s now

<?php
$a 
= [123];
$b = ['foo' => 'orange''bar' => 'apple'];