14 lines
259 B
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();
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|