Skip to content

Instantly share code, notes, and snippets.

@ricog
Created November 8, 2011 15:56
Show Gist options
  • Save ricog/1348166 to your computer and use it in GitHub Desktop.
Save ricog/1348166 to your computer and use it in GitHub Desktop.
Split long if statements onto several lines
<?php
if (
$something === true &&
$something_else === false
) {
//code here
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment