Skip to content

Instantly share code, notes, and snippets.

@swis
Created October 3, 2013 09:53
Show Gist options
  • Save swis/6807666 to your computer and use it in GitHub Desktop.
Save swis/6807666 to your computer and use it in GitHub Desktop.
<?php
public function setFoo($foo)
{
$this->foo = $foo;
return $this;
}
public function setFoo($foo)
{
$this->foo = $foo;
if (!\is_null($foo)) {
$foo->setBar($this);
}
return $this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment