cms-manage/app/controller/backend/GoogleStatisticsController.php

14 lines
259 B
PHP

<?php
namespace app\controller\backend;
use app\service\GoogleRequest;
class GoogleStatisticsController extends \app\BaseController
{
public function read() {
$googleStatistics = new GoogleRequest();
$googleStatistics->start();
}
}