mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			324 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			324 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace tests\codeception\api\_pages;
 | 
						|
 | 
						|
use yii\codeception\BasePage;
 | 
						|
 | 
						|
/**
 | 
						|
 * @property \tests\codeception\api\FunctionalTester $actor
 | 
						|
 */
 | 
						|
class IdentityInfoRoute extends BasePage {
 | 
						|
 | 
						|
    public function info() {
 | 
						|
        $this->route = ['identity-info/index'];
 | 
						|
        $this->actor->sendGET($this->getUrl());
 | 
						|
    }
 | 
						|
 | 
						|
}
 |