Skip to content

Instantly share code, notes, and snippets.

@hpatoio
Last active December 14, 2015 01:28
Show Gist options
  • Save hpatoio/5006044 to your computer and use it in GitHub Desktop.
Save hpatoio/5006044 to your computer and use it in GitHub Desktop.
<?php
/* --- */
/**
* Add players
*
* @param \Acme\DemoBundle\Entity\Player $players
* @return Team
*/
public function addPlayer(\Acme\DemoBundle\Entity\Player $players)
{
$this->players[] = $players;
$players->setPlayfor($this);
return $this;
}
/* --- */
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment