| 1 | <?php |
||
| 25 | class Model extends ActiveRecord |
||
| 26 | { |
||
| 27 | |||
| 28 | use SearchableTrait; |
||
| 29 | |||
| 30 | public $shouldBeSearchable = true; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritDoc |
||
| 34 | */ |
||
| 35 | public static function tableName() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @inheritDoc |
||
| 42 | */ |
||
| 43 | public function behaviors() |
||
| 49 | |||
| 50 | public function shouldBeSearchable(): bool |
||
| 54 | |||
| 55 | } |
||
| 56 |