mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
43e57d0117
* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
37 lines
787 B
PHP
37 lines
787 B
PHP
<?php
|
|
|
|
namespace App\Jobs\Util;
|
|
|
|
use App\Utils\Traits\BulkOptions;
|
|
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 UnlinkFile implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected $file_path;
|
|
|
|
protected $disk;
|
|
|
|
public function __construct(string $disk, string $file_path)
|
|
{
|
|
$this->file_path = $file_path;
|
|
$this->disk = $disk;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
Storage::disk($this->disk)->delete($this->file_path);
|
|
}
|
|
}
|