Skip to content

Instantly share code, notes, and snippets.

@jbutkus
Created May 7, 2014 13:31
Show Gist options
  • Save jbutkus/a274582e8c50df12b750 to your computer and use it in GitHub Desktop.
Save jbutkus/a274582e8c50df12b750 to your computer and use it in GitHub Desktop.
Indentation according to guidelines
<?php
if (
foo() ||
bar()
) {
$this->_registry->get( 'foo.bar' )
->do_action()
->chain_call();
if ( foo() ) {
$this->_registry->get( 'foo.bar' )
->do_action()
->chain_call();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment