This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $data = array( | |
| 0 => array( | |
| 'name' => 'Бразилия', # название команды | |
| 'games' => 104, # всего игр | |
| 'win' => 70, # количество побед | |
| 'draw' => 17, # количестве ничей | |
| 'defeat' => 17, # количество поражений | |
| 'goals' => array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace SnakesAndLadders; | |
| class Game | |
| { | |
| const LADDERS = [25, 55]; | |
| const SNAKES_DIVIDER = 9; | |
| const SNAKE_STEP = -3; |