mirror of
https://github.com/elyby/accounts.git
synced 2026-05-02 04:03:56 +05:30
8c82f45764
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
11 lines
210 B
PHP
11 lines
210 B
PHP
<?php
|
|
namespace api\tests\_pages;
|
|
|
|
class MojangApiRoute extends BasePage {
|
|
|
|
public function usernamesByUuid($uuid): void {
|
|
$this->getActor()->sendGET("/api/mojang/profiles/{$uuid}/names");
|
|
}
|
|
|
|
}
|