StaticTextBlockLang.php 502 Bytes
<?php

namespace backend\modules\page\models;

use yii\helpers\ArrayHelper;

/**
 * Class StaticTextBlockLang
 *
 * @package backend\modules\page\models
 * @author FilamentV <vortex.filament@gmail.com>
 * @copyright (c), Thread
 */
class StaticTextBlockLang extends \thread\modules\page\models\StaticTextBlockLang
{
    /**
     * @return array
     */
    public function scenarios()
    {
        return ArrayHelper::merge(parent::scenarios(), [
            'title' => ['title'],
        ]);
    }
}