mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
14 lines
200 B
PHP
14 lines
200 B
PHP
<?php
|
|
|
|
namespace App\Helpers;
|
|
|
|
use Exception;
|
|
|
|
class UpdateHelper {
|
|
public static function check()
|
|
{
|
|
$current = config('app.version', false);
|
|
(!$current) ? false : '';
|
|
}
|
|
}
|