mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-12 10:18:27 +01:00
28 lines
548 B
PHP
28 lines
548 B
PHP
<?php
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
/**
|
|
* @property int $attr1
|
|
* @property int $attr2
|
|
*/
|
|
class NoAutoLabels extends ActiveRecord
|
|
{
|
|
public function attributeLabels()
|
|
{
|
|
return [
|
|
'attr1' => 'Label for attr1',
|
|
];
|
|
}
|
|
|
|
public function generateAttributeLabel($name): never
|
|
{
|
|
throw new \yii\base\InvalidArgumentException('Label not defined!');
|
|
}
|
|
}
|