You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
360 B
26 lines
360 B
6 years ago
|
<?php
|
||
|
/**
|
||
|
* Created by Error202
|
||
|
* Date: 05.07.2018
|
||
|
*/
|
||
|
|
||
|
namespace core\entities;
|
||
|
|
||
|
use yii\db\ActiveRecord;
|
||
|
|
||
|
/**
|
||
|
* Class Search
|
||
|
* @package core\entities
|
||
|
*
|
||
|
* @property string $title
|
||
|
* @property string $content
|
||
|
* @property string $url
|
||
|
*/
|
||
|
|
||
|
class Search extends ActiveRecord
|
||
|
{
|
||
|
public static function tableName(): string
|
||
|
{
|
||
|
return '{{view_search}}';
|
||
|
}
|
||
|
}
|