Skip to content

Instantly share code, notes, and snippets.

@programarivm
Last active July 5, 2022 13:10
Show Gist options
  • Save programarivm/b62b7cd38d5215109929fc61980236f9 to your computer and use it in GitHub Desktop.
Save programarivm/b62b7cd38d5215109929fc61980236f9 to your computer and use it in GitHub Desktop.
Chess\Piece\PieceObserverBoardTrait
<?php
namespace Chess\Piece;
use Chess\Board;
trait PieceObserverBoardTrait
{
public function setBoard(Board $board): void
{
$this->board = $board;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment