mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			670 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			670 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace api\modules\session\validators;
 | 
						|
 | 
						|
use api\modules\session\exceptions\IllegalArgumentException;
 | 
						|
 | 
						|
/**
 | 
						|
 * For this module, it is not important for us what the error is: if at least one parameter is missing,
 | 
						|
 * we immediately throw an exception and that's it.
 | 
						|
 */
 | 
						|
class RequiredValidator extends \yii\validators\RequiredValidator {
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $value
 | 
						|
     * @return null
 | 
						|
     * @throws \api\modules\session\exceptions\SessionServerException
 | 
						|
     */
 | 
						|
    protected function validateValue($value) {
 | 
						|
        if (parent::validateValue($value) !== null) {
 | 
						|
            throw new IllegalArgumentException();
 | 
						|
        }
 | 
						|
 | 
						|
        return null;
 | 
						|
    }
 | 
						|
 | 
						|
}
 |