Skip to content

Instantly share code, notes, and snippets.

@colindecarlo
Created January 23, 2016 03:24
Show Gist options
  • Save colindecarlo/10ff0e2ebece6d0b1653 to your computer and use it in GitHub Desktop.
Save colindecarlo/10ff0e2ebece6d0b1653 to your computer and use it in GitHub Desktop.
<?php
class Numberset
{
// class definition
public function odd()
{
$mutant = new static($this->min, $this->max);
$mutant->numbers = array_filter($this->numbers, function ($number) {
return $number % 2;
});
return $mutant;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment