|
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
interface MobileAnalyticsResourceInterface
|
|
{
|
|
|
|
public function report_mobileUsage($params, $export = false);
|
|
|
|
public function add_active();
|
|
|
|
public function add_inactive();
|
|
|
|
public function add_locked();
|
|
|
|
} |