Skip to content

Instantly share code, notes, and snippets.

@ahuggins
Last active February 28, 2016 16:36
Show Gist options
  • Select an option

  • Save ahuggins/ec472985d108611d0d9c to your computer and use it in GitHub Desktop.

Select an option

Save ahuggins/ec472985d108611d0d9c to your computer and use it in GitHub Desktop.
// Something like this:
array_push($profile['items_missing'], array( 'message' => 'Like or save at least 1 hotel', 'action' => 'hotels'));
// could be this:
array_push(
$profile['items_missing'],
[
'message' => 'Like or save at least 1 hotel',
'action' => 'hotels'
]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment