Skip to content

Instantly share code, notes, and snippets.

@BinaryKitten
Last active August 30, 2019 13:26
Show Gist options
  • Save BinaryKitten/828d1e1b63084234c38c3adb4f86b768 to your computer and use it in GitHub Desktop.
Save BinaryKitten/828d1e1b63084234c38c3adb4f86b768 to your computer and use it in GitHub Desktop.
<?php
class Player {
public function __construct()
{
$this->drawPile = new Collection();
$this->drawPile->whenEmpty(function ($collection) {
return $this->recycleDiscardPile();
})
}
public function draw(int $numberOfCards): void
{
$this->hand = $this->drawPile->splice(0, $numberOfCards);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment