mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			441 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			441 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace api\components\ReCaptcha;
 | 
						|
 | 
						|
use yii\base\InvalidConfigException;
 | 
						|
 | 
						|
class Component extends \yii\base\Component {
 | 
						|
 | 
						|
    public $public;
 | 
						|
 | 
						|
    public $secret;
 | 
						|
 | 
						|
    public function init() {
 | 
						|
        if ($this->public === null) {
 | 
						|
            throw new InvalidConfigException('Public is required');
 | 
						|
        }
 | 
						|
 | 
						|
        if ($this->secret === null) {
 | 
						|
            throw new InvalidConfigException('Secret is required');
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
}
 |