1 | <?php |
||
10 | class Coin extends BaseExample |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $face; |
||
16 | |||
17 | /** |
||
18 | * @throws \Http\Client\Exception |
||
19 | * |
||
20 | * @return $this |
||
21 | */ |
||
22 | public function flip() |
||
35 | |||
36 | /** |
||
37 | * Get the coin face. |
||
38 | * |
||
39 | * @return string |
||
40 | */ |
||
41 | public function getFace() |
||
45 | } |
||
46 |