for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FizzBuzzDomain\Players;
use GameDomain\Player\PlayerInterface;
use GameDomain\Round\Step\Answer;
use GameDomain\Round\Step\Step;
use GameDomain\Rule\AbstractRulesSet;
/**
* Nabila
*/
final class Nabila implements PlayerInterface
{
* {@inheritDoc}
public function play(AbstractRulesSet $gameRules, Step $step)
return new Answer('Hallo ?!');
}
public function __toString()
return 'Nabila';