Skip to content

Instantly share code, notes, and snippets.

@ahuggins
Last active February 28, 2016 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahuggins/ec472985d108611d0d9c to your computer and use it in GitHub Desktop.
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