Skip to content

Instantly share code, notes, and snippets.

@mvriel
Created October 30, 2012 17:14
Show Gist options
  • Save mvriel/3981617 to your computer and use it in GitHub Desktop.
Save mvriel/3981617 to your computer and use it in GitHub Desktop.
Class IpRange
{
public function setStartingAddress($startingAddress)
{
InputValidator::assertValidAddress($startingAddress);
$this->startingAddress = (int) $startingAddress;
return $this;
}
}
@andriesss
Copy link

Extension is not an option in my case, given multiple inheritance is (unfortunately) not a language feature of PHP.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment