Files
yii2/tests/framework/web/stubs/ModelStub.php

18 lines
318 B
PHP

<?php
namespace yiiunit\framework\web\stubs;
use yii\base\Model;
class ModelStub extends Model
{
public $id;
public $title;
public $hidden;
public function toArray(array $fields = [], array $expand = [], $recursive = true)
{
return ['id' => $this->id, 'title' => $this->title];
}
}