mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-16 23:48:16 +08:00
24 lines
424 B
PHP
24 lines
424 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;
|
|
|
|
/**
|
|
* Class Storage
|
|
*
|
|
* @author Dmytro Naumenko <d.naumenko.a@gmail.com>
|
|
* @property int $id
|
|
* @property array $data
|
|
*/
|
|
class Storage extends ActiveRecord
|
|
{
|
|
public static function tableName()
|
|
{
|
|
return 'storage';
|
|
}
|
|
}
|