Skip to content

Instantly share code, notes, and snippets.

@czarpino
Created January 29, 2015 08:39
Show Gist options
  • Save czarpino/6c1837d9972b1cec4a42 to your computer and use it in GitHub Desktop.
Save czarpino/6c1837d9972b1cec4a42 to your computer and use it in GitHub Desktop.
Number class for git demonstration
<?php
/**
* Number helper class.
*/
class NumberHelper
{
/**
* Check whether the specified number is odd.
*
* @return bool TRUE when the number is odd, FALSE otherwise
*/
public function isOdd($number)
{
if (0 === $this->number % 2) {
return false;
}
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment