Files
yii2/tests/data/ar/NoAutoLabels.php
2025-09-30 01:33:08 +03:00

33 lines
598 B
PHP

<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
declare(strict_types=1);
namespace yiiunit\data\ar;
use yii\base\InvalidArgumentException;
/**
* @property int $attr1
* @property int $attr2
*/
class NoAutoLabels extends ActiveRecord
{
public function attributeLabels()
{
return [
'attr1' => 'Label for attr1',
];
}
public function generateAttributeLabel($name)
{
throw new InvalidArgumentException('Label not defined!');
}
}