Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Created August 21, 2018 11:57
Show Gist options
  • Save igmoweb/959c26786261dfa8964fc1f3fae5c584 to your computer and use it in GitHub Desktop.
Save igmoweb/959c26786261dfa8964fc1f3fae5c584 to your computer and use it in GitHub Desktop.
<?php
function convert( $number ) {
if ( $number > 0 ) {
return $number * 2;
}
return $number / 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment