mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-04 08:04:37 -04:00
* Refactor designs to remove whitespace * enable dummy data for templating * Insert faker data into templates * Fixes for user deletion * Documentation on User controller: * Working on app setup * Files for app setup * Working on Setup * Final fixes for setup controller * Fixes for setup * Fixes for first install * Minor fixes
38 lines
758 B
PHP
38 lines
758 B
PHP
<?php
|
|
|
|
namespace App\Jobs\Util;
|
|
|
|
use App\Models\Account;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class VersionCheck implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
|
|
$version_file = file_get_contents(config('ninja.version_url'));
|
|
|
|
if($version_file)
|
|
Account::whereNotNull('id')->update(['latest_version' => $version_file]);
|
|
|
|
}
|
|
|
|
}
|