mirror of
https://github.com/elyby/accounts.git
synced 2024-11-19 19:53:08 +05:30
18 lines
354 B
PHP
18 lines
354 B
PHP
<?php
|
|
namespace tests\codeception\api\_pages;
|
|
|
|
use yii\codeception\BasePage;
|
|
|
|
/**
|
|
* @property \tests\codeception\api\FunctionalTester $actor
|
|
*/
|
|
class RegisterRoute extends BasePage {
|
|
|
|
public $route = ['signup/index'];
|
|
|
|
public function send(array $registrationData) {
|
|
$this->actor->sendPOST($this->getUrl(), $registrationData);
|
|
}
|
|
|
|
}
|