| 1 | <?php |
||
| 13 | class Ping |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Mondo client. |
||
| 17 | * |
||
| 18 | * @var ClientInterface |
||
| 19 | */ |
||
| 20 | protected $client; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Accounts constructor. |
||
| 24 | * |
||
| 25 | * @param ClientInterface $client |
||
| 26 | */ |
||
| 27 | public function __construct(ClientInterface $client) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get details about the current client. |
||
| 34 | * |
||
| 35 | * @return Response\Ping\WhoAmI |
||
| 36 | */ |
||
| 37 | public function whoAmI() |
||
| 44 | } |
||
| 45 |