eugene-matvejev/battleship-game-api

View on GitHub
src/FoundationBundle/ORM/PlayerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace EM\FoundationBundle\ORM;

use Doctrine\ORM\Mapping as ORM;
use EM\FoundationBundle\Entity\Player;

/**
 * @since 3.1
 */
interface PlayerInterface
{
    public function getPlayer() : Player;

    public function setPlayer(Player $player);
}