mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
11 lines
228 B
PHP
11 lines
228 B
PHP
|
<?php
|
||
|
namespace api\tests\_pages;
|
||
|
|
||
|
class InternalRoute extends BasePage {
|
||
|
|
||
|
public function info(string $param, string $value) {
|
||
|
$this->getActor()->sendGET('/api/internal/accounts/info', [$param => $value]);
|
||
|
}
|
||
|
|
||
|
}
|