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.
20 lines
365 B
20 lines
365 B
6 years ago
|
<?php
|
||
|
/**
|
||
|
* Created by Error202
|
||
|
* Date: 05.07.2018
|
||
|
*
|
||
|
* Init / Update search mysql performance
|
||
|
*/
|
||
|
|
||
|
namespace console\controllers;
|
||
|
|
||
|
use core\components\SearchPerformance;
|
||
|
use yii\console\Controller;
|
||
|
|
||
|
class SearchInitController extends Controller {
|
||
|
|
||
|
public function actionInit() {
|
||
|
SearchPerformance::init();
|
||
|
echo "Search performance complete" . PHP_EOL;
|
||
|
}
|
||
|
}
|