Skip to content

Instantly share code, notes, and snippets.

@calina-c
Last active November 29, 2016 17:25
Show Gist options
  • Save calina-c/5f21c6260b4c4c14aaf099b61d7e20fa to your computer and use it in GitHub Desktop.
Save calina-c/5f21c6260b4c4c14aaf099b61d7e20fa to your computer and use it in GitHub Desktop.
return $id ? "The item was updated." : "The item was created";
########
$action = $id ? "updated" : "created";
return sprintf("The item was %s.", $action).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment