mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 06:37:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			362 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			362 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link https://www.yiiframework.com/
 | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC
 | 
						|
 * @license https://www.yiiframework.com/license/
 | 
						|
 */
 | 
						|
 | 
						|
namespace yiiunit\data\validators\models;
 | 
						|
 | 
						|
use yii\base\Model;
 | 
						|
 | 
						|
class ValidatorTestFunctionModel extends Model
 | 
						|
{
 | 
						|
    public $firstAttribute;
 | 
						|
 | 
						|
    public function required()
 | 
						|
    {
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
}
 |