Alexander Makarov
12 years ago
4 changed files with 70 additions and 2 deletions
@ -0,0 +1,17 @@ |
|||||||
|
<?php |
||||||
|
namespace yiiunit\data\base; |
||||||
|
use yii\base\Model; |
||||||
|
|
||||||
|
/** |
||||||
|
* InvalidRulesModel |
||||||
|
*/ |
||||||
|
class InvalidRulesModel extends Model |
||||||
|
{ |
||||||
|
public function rules() |
||||||
|
{ |
||||||
|
return array( |
||||||
|
array('test'), |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,21 @@ |
|||||||
|
<?php |
||||||
|
namespace yiiunit\data\base; |
||||||
|
use yii\base\Model; |
||||||
|
|
||||||
|
/** |
||||||
|
* Singer |
||||||
|
*/ |
||||||
|
class Singer extends Model |
||||||
|
{ |
||||||
|
public $fistName; |
||||||
|
public $lastName; |
||||||
|
|
||||||
|
public function rules() |
||||||
|
{ |
||||||
|
return array( |
||||||
|
array('lastName', 'default', 'value' => 'Lennon'), |
||||||
|
array('lastName', 'required'), |
||||||
|
array('underscore_style', 'yii\validators\CaptchaValidator'), |
||||||
|
); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue