build version 400

This commit is contained in:
Mohit Panjwani
2020-12-02 17:54:08 +05:30
parent 326508e567
commit 89ee58590c
963 changed files with 62887 additions and 48868 deletions

View File

@ -3,7 +3,7 @@ namespace Crater\Console\Commands;
use Illuminate\Console\Command;
use Carbon\Carbon;
use Crater\Estimate;
use Crater\Models\Estimate;
class CheckEstimateStatus extends Command
{

View File

@ -3,7 +3,7 @@ namespace Crater\Console\Commands;
use Illuminate\Console\Command;
use Carbon\Carbon;
use Crater\Invoice;
use Crater\Models\Invoice;
class CheckInvoiceStatus extends Command
{

View File

@ -4,7 +4,7 @@ namespace Crater\Console\Commands;
use Illuminate\Console\Command;
use Crater\Space\Updater;
use Crater\Setting;
use Crater\Models\Setting;
// Implementation taken from Akaunting - https://github.com/akaunting/akaunting
class UpdateCommand extends Command
@ -110,7 +110,7 @@ class UpdateCommand extends Command
$this->info('Downloading update...');
try {
$path = Updater::download($this->version);
$path = Updater::download($this->version, 1);
if (!is_string($path)) {
$this->error('Download exception');
return false;