blob: 170a8eb94e195a6be090426a356f7a55ee654947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  | 
<?php
namespace App;
use App\Message\Handler;
/**
 * A Game class that handles game execution
 *
 * @author Phil Burton <phil@pgburton.com>
 */
class Game
{
    protected $code;
    /**
     * Constuct a new Game
     *
     * @author Phil Burton <phil@pgburton.com>
     */
    public function __construct($name, $code)
    {
        $this->init($name, $code);
    }
    /**
     * Initalise the Game
     *
     * @author Phil Burton <phil@pgburton.com>
     */
    protected function init($name, $code)
    {
        // Do any pre set-up
        $this->code = $code;
        $handler = new Handler(['gameCode', 'name']);
        $handler->gameCode = $code;
        $handler->name = $name;
        $this->handler = $handler;
    }
    public function getHandler()
    {
        return $this->handler;
    }
}
 
  |