mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			698 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			698 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace tests\codeception\api\_pages;
 | 
						|
 | 
						|
use yii\codeception\BasePage;
 | 
						|
 | 
						|
/**
 | 
						|
 * @property \tests\codeception\api\FunctionalTester $actor
 | 
						|
 */
 | 
						|
class OauthRoute extends BasePage {
 | 
						|
 | 
						|
    public function validate($queryParams) {
 | 
						|
        $this->route = ['oauth/validate'];
 | 
						|
        $this->actor->sendGET($this->getUrl($queryParams));
 | 
						|
    }
 | 
						|
 | 
						|
    public function complete($queryParams = [], $postParams = []) {
 | 
						|
        $this->route = ['oauth/complete'];
 | 
						|
        $this->actor->sendPOST($this->getUrl($queryParams), $postParams);
 | 
						|
    }
 | 
						|
 | 
						|
    public function issueToken($postParams = []) {
 | 
						|
        $this->route = ['oauth/issue-token'];
 | 
						|
        $this->actor->sendPOST($this->getUrl(), $postParams);
 | 
						|
    }
 | 
						|
 | 
						|
}
 |