mirror of
https://github.com/elyby/accounts.git
synced 2024-12-28 16:10:40 +05:30
34d725abe2
Нужно признать, что перенесена она так себе, но в будущем я обязательно это перепишу.
17 lines
349 B
PHP
17 lines
349 B
PHP
<?php
|
|
namespace tests\codeception\api\_pages;
|
|
|
|
use yii\codeception\BasePage;
|
|
|
|
/**
|
|
* @property \tests\codeception\api\FunctionalTester $actor
|
|
*/
|
|
class SessionServerRoute extends BasePage {
|
|
|
|
public function join($params) {
|
|
$this->route = ['sessionserver/session/join'];
|
|
$this->actor->sendPOST($this->getUrl(), $params);
|
|
}
|
|
|
|
}
|