42 lines
949 B
PHP
Executable File
42 lines
949 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Model;
|
|
|
|
use App\Enums\BoolEnum;
|
|
use App\Enums\LottType;
|
|
use App\Utils\Helps;
|
|
use App\Utils\ThrowException;
|
|
|
|
|
|
class Apps
|
|
{
|
|
public static function buyerAndroidVersion($testVersion=null) {
|
|
$version = '0.0.15';
|
|
if ($testVersion) {
|
|
$version = $testVersion;
|
|
}
|
|
return $version;
|
|
}
|
|
public static function sellerAndroidVersion($testVersion=null) {
|
|
$version = '0.0.15';
|
|
if ($testVersion) {
|
|
$version = $testVersion;
|
|
}
|
|
return $version;
|
|
}
|
|
public static function buyerIOSVersion($testVersion=null) {
|
|
$version = '0.0.8';
|
|
if ($testVersion) {
|
|
$version = $testVersion;
|
|
}
|
|
return $version;
|
|
}
|
|
public static function sellerIOSVersion($testVersion=null) {
|
|
$version = '0.0.8';
|
|
if ($testVersion) {
|
|
$version = $testVersion;
|
|
}
|
|
return $version;
|
|
}
|
|
}
|