Files
yii2/tests/data/validators/models/ValidatorTestFunctionModel.php
Robert Korulczyk b99e955627 Fix CS (#14665)
* Run php-cs-fixer.

* Enable phpdoc_types rule.
2017-08-18 12:10:42 +02:00

21 lines
360 B
PHP

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\data\validators\models;
use yii\base\Model;
class ValidatorTestFunctionModel extends Model
{
public $firstAttribute;
public function required()
{
return true;
}
}