| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace backend\models;
- class TestApi extends BaseApi
- {
- public $apiUrl = 'test';
- public function testOpenUser()
- {
- $result = $this->get($this->apiUrl . '/test-open-user');
- return $result;
- }
- public function testOpenUserDemo()
- {
- $result = $this->get($this->apiUrl . '/test-open-user-demo');
- return $result;
- }
- public function testDeposit()
- {
- $result = $this->get($this->apiUrl . '/test-deposit');
- return $result;
- }
- public function testGroups()
- {
- $result = $this->get($this->apiUrl . '/test-groups');
- return $result;
- }
- }
|