We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bb5930 commit 8784f38Copy full SHA for 8784f38
readme.md
@@ -38,15 +38,15 @@ $deck->count();
38
39
```
40
41
-When the game is over, simply reset the deck by shuffle(ing) again. Now the deck has all the cards (including drawn).
+When the game is over, simply reset the deck by shuffle(ing). The deck now has all the cards (including drawn).
42
```php
43
//start a new game...
44
$deck->shuffle();
45
46
47
48
49
-To customise the cards of a deck, implement your own CardProvider
+To customise the deck of cards (i.e. which cards are part of the deck) one can implement the CardProvider interface
50
51
52
class MyGameDeckProvider implements CardProvider{
0 commit comments